This Gist was automatically created by Carbide, a free online programming environment.
Last active
August 26, 2016 14:24
-
-
Save alufers/b62d6e348b35acf4e7f3295fef07a1bb to your computer and use it in GitHub Desktop.
Matrices
This file contains hidden or 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
| var canvas = document.createElement("canvas"); ///Canvas startup | |
| var c = canvas.getContext("2d"); | |
| canvas.width = 100; | |
| canvas.height = 100; | |
| class Vector2 { | |
| constructor() { | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment