(self)
| 35 | glPopMatrix() |
| 36 | |
| 37 | def render_self(self): |
| 38 | raise NotImplementedError("The Abstract Node Class doesn't define 'render_self'") |
| 39 | |
| 40 | def translate(self, x, y, z): |
| 41 | self.translation_matrix = numpy.dot(self.translation_matrix, translation([x, y, z])) |