Skip to content

Commit 8b453f4

Browse files
committed
Removed short-hand aliases.
1 parent ff3e3d9 commit 8b453f4

2 files changed

Lines changed: 0 additions & 12 deletions

File tree

v3/src/math/Matrix3.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,4 @@ var Matrix3 = new Class({
408408

409409
});
410410

411-
Matrix3.prototype.mul = Matrix3.prototype.multiply;
412-
Matrix3.prototype.idt = Matrix3.prototype.identity;
413-
Matrix3.prototype.reset = Matrix3.prototype.identity;
414-
415411
module.exports = Matrix3;

v3/src/math/Vector2.js

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,4 @@ var Vector2 = new Class({
260260

261261
});
262262

263-
Vector2.prototype.sub = Vector2.prototype.subtract;
264-
Vector2.prototype.mul = Vector2.prototype.multiply;
265-
Vector2.prototype.div = Vector2.prototype.divide;
266-
Vector2.prototype.dist = Vector2.prototype.distance;
267-
Vector2.prototype.distSq = Vector2.prototype.distanceSq;
268-
Vector2.prototype.len = Vector2.prototype.length;
269-
Vector2.prototype.lenSq = Vector2.prototype.lengthSq;
270-
271263
module.exports = Vector2;

0 commit comments

Comments
 (0)