pub struct Axes {
pub scale: f64,
}Expand description
Axes are a debug structure that indicate the position of the origin of the space as well as the x, y and z directions.
It is also a way to evaluate distances, as it includes spheres with regular spacing. Its only parameter is in fact its size.
Its major downside is that being composed of almost 20 objects, it slows down rendering quite a bit.
Fields§
§scale: f64Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Axes
impl RefUnwindSafe for Axes
impl Send for Axes
impl Sync for Axes
impl Unpin for Axes
impl UnsafeUnpin for Axes
impl UnwindSafe for Axes
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more