Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi guys,
what's the best way to offset a line multiple times? I'm struggling to do it ;/
for(int i = 0; i < (numberOfOffset); i++ )
{
XYZ normal = XYZ.BasisZ;
Curve newLine = LongLine.CreateOffset(2000, normal);
doc.Create.NewDetailCurve(doc.ActiveView, newLine);
}
basically i need an array of lines
Thanks in advance.
Solved! Go to Solution.