-
Re: How to delete a polyline segment?
You could try using TRIM selecting the polyline you want to work with as a cutting edge. This will allow you to trim (delete) individual segments. I.E. trim the polyline to itself.1 -
Re: Split 3D solid's face [ Solved ]
You can use the imprint command to split faces.1 -
Re: Parametric block problem
BricsCAD parametric blocks are only parametric within BricsCAD. In AutoCAD they will be a simple block. If you have manipulated the parametric block away from its default state in BricsCAD, then that…1 -
Re: Syntax Needed to SAVE to a R11/12 ASCII DXF File
This will export the current drawing to dxf in R11 format with accuracy set to 6 decimal places (defun C:DXF-R11 ( / DXF-fname) ;set the dxf filename based on the current drawing name and location (s…1 -
Re: Help Request: Debugging SAVEFORMAT Toggle Program Code
(getvar "SAVEFORMAT") returns an integer not a string. If you remove the speach marks around your values, then your code will work. (defun c:ToggleSaveFormat (/ currentSaveFormat) ;; Get th…1