CATIA 二次开发 C#如何获取点的坐标值

来源:互联网 发布:linux c makefile 编辑:程序博客网 时间:2024/04/27 04:41
 Point2D point2D = geometry2D as Point2D;                        if (point2D != null)                        {                            object[] coordinates = new object[] { 0, 0 };                            point2D.GetCoordinates(coordinates);                        }