pub trait BodyFixed: ReferenceFrame {
type Origin: CoordinateOrigin + Copy;
// Required method
fn origin(&self) -> Self::Origin;
}Expand description
Marker trait for body-fixed reference frames.
Required Associated Types§
Sourcetype Origin: CoordinateOrigin + Copy
type Origin: CoordinateOrigin + Copy
The coordinate origin (central body) of the body-fixed frame.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".