Searched defs:ProjectionMatrix (Results 1 – 3 of 3) sorted by relevance
6 pub struct ProjectionMatrix([[f64; 4]; 4]); struct8 impl AsRef<[[f64; 4]; 4]> for ProjectionMatrix { implementation14 impl AsMut<[[f64; 4]; 4]> for ProjectionMatrix { implementation20 impl From<[[f64; 4]; 4]> for ProjectionMatrix { implementation26 impl Default for ProjectionMatrix { implementation32 impl Mul<ProjectionMatrix> for ProjectionMatrix { implementation34 fn mul(self, other: ProjectionMatrix) -> ProjectionMatrix { in mul()48 impl Mul<(i32, i32, i32)> for ProjectionMatrix { implementation60 impl Mul<(f64, f64, f64)> for ProjectionMatrix { implementation71 impl ProjectionMatrix { implementation[all …]
21 fn create_projection<F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>( in create_projection()40 F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix, in with_projection()80 pub fn projection(&self) -> &ProjectionMatrix { in projection()
137 GLfloat ProjectionMatrix[16]; member