Trait avian3d::math::AdjustPrecision
source · pub trait AdjustPrecision {
type Adjusted;
// Required method
fn adjust_precision(&self) -> Self::Adjusted;
}
Expand description
Adjust the precision of the math construct to the precision chosen for compilation.
Required Associated Types§
Required Methods§
sourcefn adjust_precision(&self) -> Self::Adjusted
fn adjust_precision(&self) -> Self::Adjusted
Adjusts the precision of self
to Self::Adjusted
.