天天看点

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

Point2D point2D = geometry2D as Point2D;
                        if (point2D != null)
                        {
                            object[] coordinates = new object[] { 0, 0 };
                            point2D.GetCoordinates(coordinates);
                        }