diff options
Diffstat (limited to 'app.go')
-rw-r--r-- | app.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -50,8 +50,11 @@ func newApp() App { func (application *App) handle() { glfw.PollEvents() application.window.SwapBuffers() - trafo := mgl32.HomogRotate3D(float32(glfw.GetTime()) * 3, mgl32.Vec3{0, 1, 1}) + + // generate and set transformation var scale float32 = 0.01 + trafo := mgl32.Ident4() + trafo = trafo.Mul4(mgl32.HomogRotate3D(float32(glfw.GetTime()) * 3, mgl32.Vec3{0, 1, 1})) trafo = trafo.Mul4(mgl32.Scale3D(scale, scale, scale)) application.graphics.setTrafo(trafo) } |