query-curve 0.1.0

A Rust library for querying custom Bezier curves, compatible with curves created at https://querycurve.com.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # QueryCurve
//!
//! A library for querying custom curves defined by Bezier curves, which can be created at
//! https://querycurve.com/

pub mod base62;
pub mod constants;
pub mod query_curve;
pub mod types;
pub mod utils;

// Re-export functions for easier access
pub use query_curve::{get_encoded_curve_query_function, query_curve, query_encoded_curve};