[go: up one dir, main page]

enterpolation 0.1.1

A library for creating and computing interpolations, extrapolations and smoothing of generic data points.
Documentation
[package]
name = "enterpolation"
authors = ["Nicolas Klenert <klenert.nicolas@gmail.com>"]
exclude = ["examples/*", ".gitignore", "CHANGELOG.md", "CONTRIBUTING.md"]
edition = "2018"
description = "A library for creating and computing interpolations, extrapolations and smoothing of generic data points."
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/enterpolation"
repository = "https://github.com/NicolasKlenert/enterpolation"
readme = "README.md"
keywords = ["interpolation", "curve", "spline", "lerp"]
categories = ["graphics", "mathematics", "no-std"]
version = "0.1.1"

[dependencies]
topology-traits = "0.1.1"
assert_float_eq = "1"
num-traits = "0.2"

[dev-dependencies]
# we are using palette and image as dependency for our gradient example
palette = "0.5"
image = "0.23"

[features]
default = ["std","linear","bezier","bspline"]
std = ["num-traits/std"]
libm = ["num-traits/libm"]
linear = []
bezier = []
bspline = []