CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 4797
Plex.Earth connects AutoCAD and Google Earth

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    12141×  
Prices - CAD eShop:

See also:
Tip 13653:FPoly - draw fixed-length polylines in AutoCAD.
Tip 13221:Attractor - snap multiple objects to existing points/vertices.
Tip 12926:How to import point coordinates from Excel to AutoCAD?
Tip 12454:How to draw Bezier curves in AutoCAD?
Tip 12368:Gaps - how to find loose ends on lines in a DWG?


Back   All CAD Tips



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:
DwgTextTranslator translates a series of drawings from one language to another using MS Access.
Download a fully functional trial version.


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist