Beispiel #1
0
 /// <summary>
 /// Creates the geometry intent based on a source inventor point
 /// </summary>
 /// <param name="point"></param>
 /// <param name="curve"></param>
 /// <param name="pointType"></param>
 public GeometryPoint(Point2d point, InventorDrawingCurve curve, PointType pointType) : base(point)
 {
     Curve     = curve;
     PointType = pointType;
 }
Beispiel #2
0
 /// <summary>
 /// Create the geometry intent based on x and y values
 /// </summary>
 /// <param name="x"></param>
 /// <param name="y"></param>
 /// <param name="curve"></param>
 /// <param name="pointType"></param>
 public GeometryPoint(double x, double y, InventorDrawingCurve curve, PointType pointType) : base(x, y)
 {
     Curve     = curve;
     PointType = pointType;
 }