CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor and other Autodesk products [www.cadforum.cz]
Cesky English Deutsch
Login/Register:
 Visitors: 1185 

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    5363x  
Comments   Tell a friend

See also:
Tip 9185:Fix problem of Areas on self-intersecting curves in AutoCAD 2013.
Tip 9097:How to convert 3D polylines to 3D surfaces?
Tip 8962:Project 2D curve to a 3D sphere.
Tip 8496:Import a XYZ-coordinate file as AutoCAD points with labels.
Tip 8460:Unusual AutoCAD linetypes - from Microstation RSC files.


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, or donating via PayPal (see above). 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:
Export 3D VRML scenes from AutoCAD and Inventor 2013
VRMLout More info


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