tentone 6 years ago
parent
commit
b0ccf4dba3
4 changed files with 6 additions and 6 deletions
  1. 6 0
      source/Viewport.js
  2. 0 2
      source/math/Matrix3.js
  3. 0 2
      source/math/Vector2.js
  4. 0 2
      source/math/Vector3.js

+ 6 - 0
source/Viewport.js

@@ -0,0 +1,6 @@
+"use strict";
+
+function Viewport()
+{
+	
+}

+ 0 - 2
source/math/Matrix3.js

@@ -11,8 +11,6 @@ function Matrix3()
 
 Object.assign(Matrix3.prototype,
 {
-	isMatrix3: true,
-
 	set: function(n11, n12, n13, n21, n22, n23, n31, n32, n33)
 	{
 		var te = this.elements;

+ 0 - 2
source/math/Vector2.js

@@ -8,8 +8,6 @@ function Vector2(x, y)
 
 Object.assign(Vector2.prototype,
 {
-	isVector2: true,
-
 	set: function(x, y)
 	{
 		this.x = x;

+ 0 - 2
source/math/Vector3.js

@@ -9,8 +9,6 @@ function Vector3(x, y, z)
 
 Object.assign(Vector3.prototype,
 {
-	isVector3: true,
-
 	set: function(x, y, z)
 	{
 		this.x = x;