Home
last modified time | relevance | path

Searched refs:ProjectionMatrix (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/plotters/src/coord/ranged3d/
Dprojection.rs6 pub struct ProjectionMatrix([[f64; 4]; 4]); struct
8 impl AsRef<[[f64; 4]; 4]> for ProjectionMatrix { implementation
14 impl AsMut<[[f64; 4]; 4]> for ProjectionMatrix { implementation
20 impl From<[[f64; 4]; 4]> for ProjectionMatrix { implementation
22 ProjectionMatrix(data)
26 impl Default for ProjectionMatrix { implementation
28 ProjectionMatrix::rotate(PI, 0.0, 0.0) in default()
32 impl Mul<ProjectionMatrix> for ProjectionMatrix { implementation
33 type Output = ProjectionMatrix;
34 fn mul(self, other: ProjectionMatrix) -> ProjectionMatrix { in mul() argument
[all …]
Dcartesian3d.rs1 use super::{ProjectionMatrix, ProjectionMatrixBuilder};
14 projection: ProjectionMatrix,
21 fn create_projection<F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>( in create_projection() argument
25 ) -> ProjectionMatrix { in create_projection()
40 F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix, in with_projection() argument
58 pub fn set_projection<F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>( in set_projection()
80 pub fn projection(&self) -> &ProjectionMatrix { in projection() argument
Dmod.rs2 pub use projection::{ProjectionMatrix, ProjectionMatrixBuilder};
/external/mesa3d/src/mesa/drivers/common/
Dmeta.h137 GLfloat ProjectionMatrix[16]; member
Dmeta.c691 memcpy(save->ProjectionMatrix, ctx->ProjectionMatrixStack.Top->m, in _mesa_meta_begin()
1106 _mesa_load_matrix(ctx, &ctx->ProjectionMatrixStack, save->ProjectionMatrix); in _mesa_meta_end()
/external/rust/crates/plotters/src/chart/
Dcontext.rs9 use crate::coord::ranged3d::{ProjectionMatrix, ProjectionMatrixBuilder};
597 pub fn with_projection<P: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>( in with_projection()