- 积分
- 1052
- 明经币
- 个
- 注册时间
- 2010-9-25
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
int plxEndparam = Convert.ToInt16(plx.EndParam);
for (int i = 0; i < plxEndparam; i++)
{
FilletatVertex(plx, i * 2, 4);
}
plx.RemoveVertexAt(0);
plx.RemoveVertexAt(0);
plx.RemoveVertexAt(Convert.ToInt16(plx.EndParam)-1);
plx.RemoveVertexAt(Convert.ToInt16(plx.EndParam)-1);
plx.Elevation = closedPl.Elevation;
Point3d pt0 = plx.StartPoint;
Point3d pt1 = plx.GetPoint3dAt(1);
pt0和pt1的坐标发生很大的变化,pt0变成(77072912557.9101,1672766175526.85,-17.05),
pt1变成(77072912555.9122,1672766175526.94,-17.05),一般它们的坐标都是在686500,7091,-17.05)左右的。怎么回事呢?
|
|