mod normal_signed;
pub use normal_signed::*;
mod normal;
pub use normal::*;
use core::{fmt, default};
pub trait KnotValue:
Copy +
Clone +
Sized +
PartialEq +
From<f32> +
Into<f32> +
fmt::Debug +
fmt::Display +
default::Default
{
}
impl KnotValue for f32 {
}