Search the Community
Showing results for tags 'divide'.
-
Hello, I want to ask for help. If i have list of points (startX1 X2 X3 X4 Xn EndXn StartX X X X X X EndX ....) --> StartX1 X2 X3 .. EndXn "all of the list is string" and i want to divide to different parts ((startX1 X2 X3 X4 Xn EndXn) (StartX X X X X X EndX)) Thank you
-
Help modifying a modified divide lisp from Cadalyst website
dughug posted a topic in AutoLISP, Visual LISP & DCL
Hi all: I like using Lisps, but don't know how to write code for them. I like this particular lisp created by Mosad Elewa and posted on Cadalyst.com. When trying the lisp on a polyline, it did not work. Seems to only work on a "line". Here's the code: ------------------------... -
i want to modified "area" command. see below picture. Click the first point. Click the second point. Click to third point, moving the mouse pointer along the line, the green part of the area, showing the edit is a must.
-
- area split
- area
-
(and 1 more)
Tagged with:
-
how to divide a closed polygon
malkasun posted a topic in AutoCAD 2D Drafting, Object Properties & Interface
how to divide a polygon into 3 equal polygons (same area or we known area)? I wanted to divide the polygon shown in the screenshot below into equal 3 polygons (with same area), but I couldn't figure out if these is some commands or workflow to perform this issue is the "trial and error" is... -
Hello I would like to have a simple lisp routine that divide all the numbers in a given layer by 20, can anybody help me? Thx
-
Hello, I'm using a function to quickly divide a line. The divisions are rounded to a chosen distance. (defun inzetpunten (/ obj num div objg) (while (not obj) (setq obj(entsel)) (if obj (progn (setq objg (entget (car obj))) (setq num (/ (distance (cdr (a...
-
Models with different sizes (m² or ft²) and scales (1:50, 1:100, 1:200, etc.) are divided into different numbers of layouts. I have seen they are either put into a single layout or divided into several layouts. How do you know into how many layouts and at which points a model should be divided to pr...
-
Subdividing height lines between two (poly)lines
TheDude posted a topic in AutoCAD 2D Drafting, Object Properties & Interface
Hey, For a big height map that has height lines every 5m I would like to fake a more accurate map of one line per 1m. To do that manually it would take a crazy amount of time, so I was wondering if there is a way to do this quickly. I made this very elaborate image to show my point. In orang...- 11 replies
-
- question
- heightlines
-
(and 3 more)
Tagged with:
-
Hello, I know this is a user error on my part, Bu I cannot figure this out for the life of me. My company have a set of blocks in a .dwg file on its own - let's say they are circles with radii that vary by 10'. In another drawing I want to divide a polyline using a one of these circle blocks...
- 2 replies
-
- scale
- insert block
-
(and 3 more)
Tagged with:
-
Hello All, First off, Thanks for this site and everyone that posts on it....I have recieved a lot of great info just reading through forums. This routine arrays selected objects along an arc, spline, pline, helix, at offsets, rotations, etc... -edit- User selects object(s), basepoint of...
-
I'm looking to use the measure command in a slightly different way. I need to use measure, then return that number created into a block and insert that block to a point on a line. Ultimately, I am creating a "stud count" for a beam 12" on center. Any ideas? Thanks, -Nobull
-
dividing a trapezoid shape to have the same centroid height in z direction
patrick1q posted a topic in AutoCAD 3D Modelling & Rendering
I need to divide a bridge deck section (sort of trapezoidal shape with circular hollow section inside) but I need to keep the centroid level of each section to be at the same height. is there any simple way of doing it using Autocad 2014? -
Measure or Divide object - without use aligned distance...
CafeJr posted a topic in AutoLISP, Visual LISP & DCL
Guys, I'm curious, somebody know how to use the commands: Measure or Divide. I need to distribute a block in one traced line, but with the same space betwen them, these commands put the distance, so, when the object that is the reference got a inclination the distance follow the object but t...- 7 replies
-
- lisp
- equal space
-
(and 2 more)
Tagged with:
-
Hello all! I am new to this forum, so please forgive me if I ask stupid questions or simply don't make sense My work requires me to create programs for our CNC router. It is done in AutoCAD 2008. To help making programs faster I've created series of dynamic blocks. I am attaching a file with one...
-
markers produced by divide cmnd, aren't selectable by object snap, why?
khoshravan posted a topic in AutoCAD General
I want to divide a line to three equal parts and draw lines stating from divided points. Command "devide" neatly do the dividing job and put marks for points. Appearance of these makrsers could be altered by ddptype command to become more visible. However I can't snap to these points when I want...- 2 replies
-
- object snap
- divide
-
(and 1 more)
Tagged with:
-
Re-draw an object using polyline from nodes created by "divide" command
pryzmm posted a topic in AutoLISP, Visual LISP & DCL
hi, i'm still a beginner in lisp and need some help from you guys; ;;;---- lets say i have a closed polyline outline (shape like a light bulb) that consist of lines and arc as my base entity. if i were to use "divide" say by "50 segments" (user input) on this polyline can this 50 nodes or... -
Hi, I'm trying to divide up a closed polyline with the blue line that intersects with it. I'm able to get the vertices for the intersection points. The end result should have 2 separate closed polylines. I've checked on the internet, and found some Lisp code, which unfortunately, I do no...