You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Vec2.js 135B

1234567891011
  1. export default class Vec2 {
  2. constructor(x = 0, y = 0) {
  3. this.x = x;
  4. this.y = y;
  5. }
  6. set(x, y) {
  7. this.x = x;
  8. this.y = y;
  9. }
  10. }