Lisp to set polyline width
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi All,
I'm trying to amend a civil 3d command to set the layer and width of the polyline it creates.
The layer changes ok, but the plinewid doesnt apply to the polyline created.
Any ideas?
Thanks in advance!
(command "_.undefine" "AeccCreateSurfaceWaterDrop")
(defun C:AeccCreateSurfaceWaterDrop () (setvar 'clayer "Surface Water Flow Path") (setvar 'plinewid 0.1) (command "_.AeccCreateSurfaceWaterDrop"))
Link copied