pub struct Vector {
pub x: f32,
pub y: f32,
pub z: f32,
}Expand description
LSL Vector of 3 float components
Fields§
§x: f32x component
y: f32y component
z: f32z component
Trait Implementations§
Source§impl From<RegionCoordinates> for Vector
impl From<RegionCoordinates> for Vector
Source§fn from(value: RegionCoordinates) -> Self
fn from(value: RegionCoordinates) -> Self
Converts to this type from the input type.
Source§impl From<Vector> for RegionCoordinates
impl From<Vector> for RegionCoordinates
impl StructuralPartialEq for Vector
Auto Trait Implementations§
impl Freeze for Vector
impl RefUnwindSafe for Vector
impl Send for Vector
impl Sync for Vector
impl Unpin for Vector
impl UnwindSafe for Vector
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