1. 程式人生 > >CATIA 二次開發 C#如何獲取點的座標值

CATIA 二次開發 C#如何獲取點的座標值

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