pub enum AltitudeMode {
Absolute,
RelativeToGround,
ClampToGround,
}Expand description
How a model’s altitude is interpreted relative to the terrain.
Variants§
Absolute
Absolute meters above the WGS-84 ellipsoid.
RelativeToGround
Meters above the terrain surface.
ClampToGround
Placed directly on the terrain surface (altitude ignored).
Trait Implementations§
Source§impl Clone for AltitudeMode
impl Clone for AltitudeMode
Source§fn clone(&self) -> AltitudeMode
fn clone(&self) -> AltitudeMode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AltitudeMode
impl Debug for AltitudeMode
Source§impl Default for AltitudeMode
impl Default for AltitudeMode
Source§fn default() -> AltitudeMode
fn default() -> AltitudeMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for AltitudeMode
impl PartialEq for AltitudeMode
impl Copy for AltitudeMode
impl Eq for AltitudeMode
impl StructuralPartialEq for AltitudeMode
Auto Trait Implementations§
impl Freeze for AltitudeMode
impl RefUnwindSafe for AltitudeMode
impl Send for AltitudeMode
impl Sync for AltitudeMode
impl Unpin for AltitudeMode
impl UnsafeUnpin for AltitudeMode
impl UnwindSafe for AltitudeMode
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