skia_safe

Struct M44

Source
#[repr(C)]
pub struct M44 { /* private fields */ }

Implementations§

Source§

impl M44

Source

pub const fn new_identity() -> Self

Source

pub fn concat(a: &Self, b: &Self) -> Self

Source

pub const fn nan() -> Self

Source

pub const fn new( m0: scalar, m4: scalar, m8: scalar, m12: scalar, m1: scalar, m5: scalar, m9: scalar, m13: scalar, m2: scalar, m6: scalar, m10: scalar, m14: scalar, m3: scalar, m7: scalar, m11: scalar, m15: scalar, ) -> Self

Source

pub fn rows(r0: &V4, r1: &V4, r2: &V4, r3: &V4) -> Self

Source

pub fn cols(c0: &V4, c1: &V4, c2: &V4, c3: &V4) -> Self

Source

pub fn row_major(r: &[scalar; 16]) -> Self

Source

pub fn col_major(c: &[scalar; 16]) -> Self

Source

pub fn translate(x: scalar, y: scalar, z: scalar) -> Self

Source

pub fn scale(x: scalar, y: scalar, z: scalar) -> Self

Source

pub fn rotate(axis: V3, radians: scalar) -> Self

Source

pub fn rect_to_rect(src: impl AsRef<Rect>, dst: impl AsRef<Rect>) -> Self

Source

pub fn look_at(eye: &V3, center: &V3, up: &V3) -> Self

Source

pub fn perspective(near: f32, far: f32, angle: f32) -> Self

Source

pub fn get_col_major(&self, v: &mut [scalar; 16])

Source

pub fn get_row_major(&self, v: &mut [scalar; 16])

Source

pub fn set_col_major(&mut self, v: &[scalar; 16]) -> &mut Self

👎Deprecated since 0.30.0: use M44::col_major() instead
Source

pub fn set_row_major(&mut self, v: &[scalar; 16]) -> &mut Self

👎Deprecated since 0.30.0: use M44::row_major() instead
Source

pub fn set_44( &mut self, m0: scalar, m1: scalar, m2: scalar, m3: scalar, m4: scalar, m5: scalar, m6: scalar, m7: scalar, m8: scalar, m9: scalar, m10: scalar, m11: scalar, m12: scalar, m13: scalar, m14: scalar, m15: scalar, ) -> &mut Self

👎Deprecated since 0.30.0: use Self::new() instead
Source

pub fn rc(&self, r: usize, c: usize) -> scalar

Source

pub fn set_rc(&mut self, r: usize, c: usize, value: scalar)

Source

pub fn row(&self, i: usize) -> V4

Source

pub fn col(&self, i: usize) -> V4

Source

pub fn set_row(&mut self, i: usize, v: &V4)

Source

pub fn set_col(&mut self, i: usize, v: &V4)

Source

pub fn set_identity(&mut self) -> &mut Self

Source

pub fn set_translate(&mut self, x: scalar, y: scalar, z: scalar) -> &mut Self

Source

pub fn set_scale(&mut self, x: scalar, y: scalar, z: scalar) -> &mut Self

Source

pub fn set_rotate_unit_sin_cos( &mut self, axis: V3, sin_angle: scalar, cos_angle: scalar, ) -> &mut Self

Source

pub fn set_rotate_unit(&mut self, axis: V3, radians: scalar) -> &mut Self

Source

pub fn set_rotate(&mut self, axis: V3, radians: scalar) -> &mut Self

Source

pub fn set_concat_16(&mut self, a: &M44, col_major: &[scalar; 16]) -> &mut Self

👎Deprecated since 0.30.0: use M44::col_major() and M44::set_concat()
Source

pub fn set_concat(&mut self, a: &M44, b: &M44) -> &mut Self

Source

pub fn pre_concat_16(&mut self, col_major: &[scalar; 16]) -> &mut Self

👎Deprecated since 0.30.0: use M44::col_major() and M44::pre_concat()
Source

pub fn pre_concat(&mut self, m: &M44) -> &mut Self

Source

pub fn post_concat(&mut self, m: &M44) -> &mut Self

Source

pub fn normalize_perspective(&mut self)

Source

pub fn is_finite(&self) -> bool

Source

pub fn invert(&self) -> Option<M44>

Source

pub fn transpose(&self) -> Self

Source

pub fn dump(&self)

Source

pub fn map(&self, x: f32, y: f32, z: f32, w: f32) -> V4

Source

pub fn to_m33(&self) -> Matrix

Source

pub fn pre_translate( &mut self, x: scalar, y: scalar, z: impl Into<Option<scalar>>, ) -> &mut Self

Source

pub fn post_translate( &mut self, x: scalar, y: scalar, z: impl Into<Option<scalar>>, ) -> &mut Self

Source

pub fn pre_scale(&mut self, x: scalar, y: scalar) -> &mut Self

Source

pub fn pre_scale_xyz(&mut self, x: scalar, y: scalar, z: scalar) -> &mut Self

Trait Implementations§

Source§

impl Clone for M44

Source§

fn clone(&self) -> M44

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for M44

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for M44

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl From<&Matrix> for M44

Source§

fn from(src: &Matrix) -> Self

Converts to this type from the input type.
Source§

impl From<Matrix> for M44

Source§

fn from(m: Matrix) -> Self

Converts to this type from the input type.
Source§

impl Mul<V3> for &M44

Source§

type Output = V3

The resulting type after applying the * operator.
Source§

fn mul(self, v: V3) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul<V4> for &M44

Source§

type Output = V4

The resulting type after applying the * operator.
Source§

fn mul(self, v: V4) -> Self::Output

Performs the * operation. Read more
Source§

impl Mul for &M44

Source§

type Output = M44

The resulting type after applying the * operator.
Source§

fn mul(self, m: Self) -> Self::Output

Performs the * operation. Read more
Source§

impl PartialEq for M44

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

§

impl Freeze for M44

§

impl RefUnwindSafe for M44

§

impl Send for M44

§

impl Sync for M44

§

impl Unpin for M44

§

impl UnwindSafe for M44

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<N, T> NativeTransmutableWrapper<N> for T
where T: NativeTransmutable<N>,

Source§

fn wrap(native: N) -> T

Source§

fn unwrap(self) -> N

Source§

fn inner(&self) -> &N

Source§

fn inner_mut(&mut self) -> &mut N

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.