#curve #bezier #spline

nbez

An n-dimensional/n-order Bézier curve library

1 unstable release

Uses old Rust 2015

0.1.0 Aug 3, 2016

#28 in #bezier

Apache-2.0

46KB
1K SLoC

nbez-rs Build Status

A repository that provides various bezier curve types of varying order and dimensionality.

Documentation

Usage

To use this crate, simply add the following your cargo.toml:

[dependencies]
nbez-rs = "0.1"

From there, import any of the types you wish into your module, as well as the BezCurve trait. That trait exposes most of the curve functions, so you won't really be able to do much without it.


lib.rs:

A crate that provides generic bezier curves of varying order and dimensionality, including numerous stack-allocated curves and an (admittedly not entirely functional) n-order curve.

Dependencies

~245KB