(&mut self, matrix: Mat3)
| 152 | } |
| 153 | |
| 154 | pub fn push_matrix(&mut self, matrix: Mat3) { |
| 155 | // TODO: Support relative transforms |
| 156 | self.matrices.push(matrix); |
| 157 | } |
| 158 | |
| 159 | pub fn pop_matrix(&mut self) { |
| 160 | self.matrices.pop(); |
nothing calls this directly
no outgoing calls
no test coverage detected