Message 1 of 9
How to extrude imported dxf along polyline?
Not applicable
10-21-2012
05:34 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have region is in external dxf file,
how to extrude it along polyline?
I can't get region after using dxfin method
Database myDxfDb = new Database(false, true);
myDxfDb.DxfIn(filename, logFilename);
Matrix3d dxfTrf = Matrix3d.Identity;
_ThisDatabase.Insert(dxfTrf, myDxfDb, true);
_ThisDatabase.UpdateExt(true);
myDxfDb.Dispose();
acTrans.Commit();
ObjectId id = AcUtils.EntLast();
Entity _ent = (Entity)acTrans.GetObject(id, OpenMode.ForWrite);