Over 1.104.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and sys.variables and env.variables,.
CAD tip # 6706:
Question
A
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.
ACAD2010ACAD2009ACLTADTMap
27.5.2009
17748×
this tip shared by ARKANCE experts applies to: AutoCAD 2010 · AutoCAD 2009 · AutoCAD LT · AutoCAD Architecture · AutoCAD Map 3D ·
![CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

