(self)
| 15 | self.create_objects() |
| 16 | |
| 17 | def create_objects(self): |
| 18 | self.camera = Camera(self, [-5, 6, -55]) |
| 19 | self.projection = Projection(self) |
| 20 | self.object = self.get_object_from_file('resources/t_34_obj.obj') |
| 21 | self.object.rotate_y(-math.pi / 4) |
| 22 | |
| 23 | def get_object_from_file(self, filename): |
| 24 | vertex, faces = [], [] |
no test coverage detected