摘要: 求中点坐标: /// /// 中点 /// /// 起点 /// 终点 /// public Point3d Midpoint(Point3d StartPoint, Point3d EndPoint) { Double x = (StartPoint.X + EndPoint.X)/2; Double y = (StartPoint.Y + EndPoint.Y) / 2; Double z = (Star... 阅读全文
posted @ 2013-09-11 17:20 或、许 阅读(1225) 评论(0) 推荐(1) 编辑