CAD Forum
Cesky English Deutsch
Login:
 Visitors: 1313 
Custom CAD application development

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    1725x  
Comments   Tell a friend
Share tip: Digg it! Del.icio.us Facebook Technorati StumbleUpon

See also:
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.
Tip 6895:How to use spline as a breakline in Civil 3D?
Tip 6641:Cannot offset this object.


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:
Save your floating licenses (NLS) consumed by inactive users - free unused licenses with
LogOff 2006 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.