Message 1 of 6
Convert Curve into Curve2D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Sorry to ask this question. I was wondering if there's a function available to convert a Curve into 2D Entity?
Thank you in advance
//Selection
var o = tr.GetObject(oID, OpenMode.ForRead);
if (o is Curve)
{
Curve mCurve = (Curve)o;
// Converting to 2D Entity for checking the intersection of objects
}