- 积分
- 1655
- 明经币
- 个
- 注册时间
- 2008-5-27
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
楼主 |
发表于 2011-11-10 10:25:51
|
显示全部楼层
public static ObjectId AddDimRotated(double angle, Point3d pt1, Point3d pt2, Point3d ptText, string text, ObjectId style)
{
RotatedDimension ent = new RotatedDimension(angle, pt1, pt2, ptText, text, style);
ObjectId entId = AppendEntity(ent);
return entId;
} |
|