Rotation Fix Attempt 1 - Demo 08

Objective

Fix the rotation problem from the previous demo in a seemingly intuitive way, but do it inelegantly.

Demo 08

Demo 08

How to Execute

Load src/modelviewprojection/demo08.py in Spyder and hit the play button.

Move the Paddles using the Keyboard

Keyboard Input

Action

w

Move Left Paddle Up

s

Move Left Paddle Down

k

Move Right Paddle Down

i

Move Right Paddle Up

d

Increase Left Paddle’s Rotation

a

Decrease Left Paddle’s Rotation

l

Increase Right Paddle’s Rotation

j

Decrease Right Paddle’s Rotation

Description

The problem in the last demo is that all rotations happen relative to World Space’s (0,0) and axes. By translating our paddles to their position before rotating, they are rotated around World Space’s origin, instead of being rotated around their modelspace’s center.

In this demo, we try to solve the problem by making a method to rotate around a given point in world space, in this case, the paddle’s center.

src/modelviewprojection/mathutils2d.py
58@dataclasses.dataclass
59class Vector2D(mu1d.Vector1D):
60    y: float  #: The y-component of the 2D Vector
src/modelviewprojection/mathutils2d.py
174def rotate_around(
175    angle_in_radians: float, center: Vector2D
176) -> mu.InvertibleFunction:
177    return mu.compose(
178        [mu.translate(center), rotate(angle_in_radians), mu.translate(-center)]
179    )

Within the event loop, this seems quite reasonable

src/modelviewprojection/demo08.py
143while not glfw.window_should_close(window):
src/modelviewprojection/demo08.py
164    GL.glColor3f(*iter(paddle1.color))
165
166    GL.glBegin(GL.GL_QUADS)
167    rotatePoint: mu2d.Vector2D = paddle1.position
168    for p1_v_ms in paddle1.vertices:
169        fn: mu2d.InvertibleFunction = mu2d.compose(
170            [
171                mu2d.uniform_scale(1.0 / 10.0),
172                mu2d.rotate_around(paddle1.rotation, rotatePoint),
173                mu2d.translate(paddle1.position),
174            ]
175        )
176        paddle1_vector_ndc: mu2d.Vector2D = fn(p1_v_ms)
177        GL.glVertex2f(paddle1_vector_ndc.x, paddle1_vector_ndc.y)
src/modelviewprojection/demo08.py
182    # draw paddle 2
183    GL.glColor3f(*iter(paddle2.color))
184
185    GL.glBegin(GL.GL_QUADS)
186    rotatePoint: mu2d.Vector2D = paddle2.position
187    for p2_v_ms in paddle2.vertices:
188        fn: mu2d.InvertibleFunction = mu2d.compose(
189            [
190                mu2d.uniform_scale(1.0 / 10.0),
191                mu2d.rotate_around(paddle2.rotation, rotatePoint),
192                mu2d.translate(paddle2.position),
193            ]
194        )
195        paddle2_vector_ndc: mu2d.Vector2D = fn(p2_v_ms)
196        GL.glVertex2f(paddle2_vector_ndc.x, paddle2_vector_ndc.y)
197    GL.glEnd()

All we did was add a rotate around method, and call it, with the paddle’s center as the rotate point.

Although this works for now and looks like decent code, this is extremely sloppy, and not thought out well at all. We apply a transformation from paddle space to world space, then do the inverse, then rotate, and then do the first transformation from paddle space to world space again.

The images of the transformation sequence below should show how brain-dead it is, and the Cayley graph is gross.

But from this we will learn something important.

Demo 08

translating back to the origin

Demo 08

resetting the coordinate system

Demo 08

rotating

Demo 08

resetting the coordinate system

Demo 08

and them translating them back to the paddle space origin

Demo 08

Cayley Graph

Note, this is gross, and the edge from the paddlespace to itself doesn’t even make any sense, but the author did not know how else to represent this code.

Demo 08