Spline Constructor

Overload List

Method Description
Spline.Spline () Default constructor. Initializes to line segment between (0,0,0) and (1,0,0).
Spline.Spline (int, [MarshalAs(UnmanagedType.U1)] bool, [MarshalAs(UnmanagedType.U1)] bool, [MarshalAs(UnmanagedType.U1)] bool, Point3dCollection, DoubleCollection, DoubleCollection, double, double) Creates a spline using the parameters passed in.If the spline is to be rational, then isRational should be true.... more
Spline.Spline (Point3d, Vector3d, Vector3d, double, double, double) This constructor creates a spline initialized to be an elliptical arc.The center, unitNormal, and majorAxis are used... more
Spline.Spline (Point3dCollection, [MarshalAs(UnmanagedType.U1)] bool, KnotParameterizationEnum, int, double) Creates a spline that attempts to fit a curve to the array of points within the tolerance fitTolerance.A fitTolerance... more
Spline.Spline (Point3dCollection, int, double) Creates a spline that attempts to fit an order degree curve to the array of points within the tolerance fitTolerance... more
Spline.Spline (Point3dCollection, KnotParameterizationEnum, int, double) This wraps AcDbSpline::AcDbSpline() method
Spline.Spline (Point3dCollection, Vector3d, Vector3d, int, double) Creates a spline that attempts to fit an order degree curve to the array of points within the tolerance fitTolerance... more
Spline.Spline (Point3dCollection, Vector3d, Vector3d, KnotParameterizationEnum, int, double) This wraps AcDbSpline::AcDbSpline() method