Created
March 25, 2020 17:01
-
-
Save benbotto/b7f1b3236a34a4aac6a331c78ef5def6 to your computer and use it in GitHub Desktop.
A rectangle orbiting about a point.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Rectangle { | |
constructor(gl, color, width, height) { | |
this.gl = gl; | |
this.color = color; | |
this.width = width; | |
this.height = height; | |
// Rotation, updated before each render. | |
this.rotation = gl.mat2d.create(); | |
// Translation1: The radius of orbit. | |
this.radiusTranslation = gl.mat2d.fromTranslation( | |
gl.mat2d.create(), | |
gl.vec2.fromValues(40, 0)); | |
// Translation2: The center of the orbit. | |
this.orbitTranslation = gl.mat2d.fromTranslation( | |
gl.mat2d.create(), | |
gl.vec2.fromValues(100, 100)); | |
} | |
/** | |
* Update the Rectangle's transformation matrix before a render. | |
*/ | |
update(elapsedMs) { | |
// Rotate PI per second. | |
this.gl.mat2d.rotate(this.rotation, this.rotation, | |
Math.PI * elapsedMs / 1000); | |
} | |
/** | |
* Get the Rectangle's transformation matrix. | |
*/ | |
getTransformation() { | |
// transformation = translate(P) * rotate(θ) * translate(r, 0) | |
const transformation = this.gl.mat2d.create(); | |
this.gl.mat2d.multiply( | |
transformation, | |
this.orbitTranslation, | |
this.rotation); | |
this.gl.mat2d.multiply( | |
transformation, | |
transformation, | |
this.radiusTranslation); | |
return transformation; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment