()
| 35 | |
| 36 | impl Default for CameraUniform { |
| 37 | fn default() -> Self { |
| 38 | Self { |
| 39 | view_proj: Mat4::IDENTITY.to_cols_array_2d(), |
| 40 | pixel_to_clip: [0.0; 4], |
| 41 | pixel_to_world: [0.0; 4], |
| 42 | } |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | #[derive(Debug, Clone, Default, Copy, PartialEq)] |
nothing calls this directly
no outgoing calls
no test coverage detected