How to obtain a small offset around a polyline? (AutoCAD .net API)
DBObjectCollection _offsetPolylines = polylineInstance.GetOffsetCurves(25);
// offsets the polyline by 25 mm
// the object collection should really have only one item in it: a polyline offseting the original by 25mm.
It really is as simple as that!
Written on February 22, 2017