pub struct BSpline<T: Interpolate<F> + Copy, F: Float> { /* private fields */ }
Expand description

Represents a B-spline curve that will use polynomials of the specified degree to interpolate between the control points given the knots.

Implementations

Create a new B-spline curve of the desired degree that will interpolate the control_points using the knots. The knots should be sorted in non-decreasing order otherwise they will be sorted for you, which may lead to undesired knots for control points. Note that here we use the interpolating polynomial degree, if you’re familiar with the convention of “B-spline curve order” the degree is curve_order - 1.

Your curve must have a valid number of control points and knots or the function will panic. A B-spline curve requires at least as one more control point than the degree (control_points.len() > degree) and the number of knots should be equal to control_points.len() + degree + 1.

Compute a point on the curve at t, the parameter must be in the inclusive range of values returned by knot_domain. If t is out of bounds this function will assert on debug builds and on release builds you’ll likely get an out of bounds crash.

Get an iterator over the control points.

Get an iterator over the knots.

Get the min and max knot domain values for finding the t range to compute the curve over. The curve is only defined over the inclusive range [min, max], passing a t value outside of this range will result in an assert on debug builds and likely a crash on release builds.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.