pub trait Mat3RealConversions {
    // Required methods
    fn as_f32(&self) -> mat3<f32>;
    fn as_r32(&self) -> mat3<R32>;
}
Expand description

A trait for converting [mat3]’s inner types between f32 and [R32].

Required Methods§

source

fn as_f32(&self) -> mat3<f32>

source

fn as_r32(&self) -> mat3<R32>

Implementations on Foreign Types§

source§

impl<T: Float> Mat3RealConversions for mat3<T>

source§

fn as_f32(&self) -> mat3<f32>

source§

fn as_r32(&self) -> mat3<R32>

Implementors§