CAD Forum
Cesky English Deutsch
Login:
 Visitors: 1324 

WWW server of the XANADU company (formerly: CAD Studio) Become a fan of CADforum on Facebook

CAD tip CAD tip # 6706:

Question CAD 
 %  platform  category 
Q - question

What is the maximum number of vertices in AutoCAD polylines?

A - answer The number of polyline vertices (in a Polyline, LWpolyline, 3Dpolyline, Spline) is not limited in AutoCAD, you can use any practical number of polyline nodes (vertex). So you can create and edit curves with more than 100.000 vertices.

With such extremely large polylines, you have to count with slower response in some operations (e.g. displaying grips on grip-editing).

You can try yourself the following AutoLISP code:

(setq x 0 y 0)
(setvar "CMDECHO" 0)
(command "_PLINE")
(repeat 100001
 (command (list x y))
 (setq x (+ x 1.0) y (+ y 1.0))
)
(command "")
(setvar "CMDECHO" 1)
(vl-load-com)
(vlr-beep-reaction)

For comparison: the maximal number of polyline vertices is limited to 101 in the DGN V7 format, and to 5.000 points in the DGN V8 format.

ACAD2010ACAD2009LTADTMap
100% *  CAD 
27.5.2009    1758x  
Comments   Tell a friend
Share tip: Digg it! Del.icio.us Facebook Technorati StumbleUpon

See also:
Tip 7273:How to create custom line styles for GIS maps?
Tip 7266:How to convert 2D polyline to 3D polyline?
Tip 7099:Blocks perpendicular to a polyline.
Tip 7093:How to convert a polygon or a region to 3Dfaces.
Tip 6955:Simply add or delete a polyline vertex.


Back   All CAD Tips All CAD tips&tricks

How to remove unwanted references to .DXE files? « | » Simply create points or polyline from coordinates in Excel.

Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings. You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Make your drawings dynamic - change text, attribute or color when other entity changes.
With LiveLabel 2007 More info


Please use these tips at your own risk.
XANADU (CAD Studio) is not responsible for possible problems that may occur as a result of using any of these tips.