天天看點

CATIA 二次開發 C#如何擷取點的坐标值

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