Home
last modified time | relevance | path

Searched defs:ProjectionMatrix (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/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
26 impl Default for ProjectionMatrix { implementation
32 impl Mul<ProjectionMatrix> for ProjectionMatrix { implementation
34 fn mul(self, other: ProjectionMatrix) -> ProjectionMatrix { in mul()
48 impl Mul<(i32, i32, i32)> for ProjectionMatrix { implementation
60 impl Mul<(f64, f64, f64)> for ProjectionMatrix { implementation
71 impl ProjectionMatrix { implementation
[all …]
Dcartesian3d.rs22 fn create_projection<F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix>( in create_projection()
42 F: FnOnce(ProjectionMatrixBuilder) -> ProjectionMatrix, in with_projection()
102 pub fn projection(&self) -> &ProjectionMatrix { in projection()