Class NurbsCurve
This class represents a NURBS curve.
public class NurbsCurve : NurbsBase, IGeometry<NurbsBase>, IEquatable<NurbsBase>, ITransformable<NurbsBase>, ITransformable<NurbsCurve>
It looks like the sample you are looking for does not exist.
Creates a NURBS curve.
public NurbsCurve(List<Point3> points, List<double> weights, int degree)
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.List<Point3> | points | The points of the curve. |
| System.Collections.Generic.List<System.Double> | weights | The weights of each point. |
| System.Int32 | degree | The curve degree. |
Creates a NURBS curve.
public NurbsCurve(List<Point3> points, int degree)
| Type | Name | Description |
|---|---|---|
| System.Collections.Generic.List<Point3> | points | The points of the curve. |
| System.Int32 | degree | The curve degree. |
Transforms a curve with the given transformation matrix.
public NurbsCurve Transform(TransformMatrix transformation)
| Type | Name | Description |
|---|---|---|
| TransformMatrix | transformation | The transformation matrix. |
| Type | Description |
|---|---|
| NurbsCurve | A new NURBS curve transformed. |