pub trait ConstrainedAngle {
    fn new(angle: &Angle) -> Self;
    fn value(&self) -> Angle;
}
Expand description

Trait for constrained angles

Required Methods§

Angle constructor that panics when the underlying angle does not satisfy constraints.

Get underlying angle

Implementors§