summaryrefslogtreecommitdiff
path: root/Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua')
-rw-r--r--Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua45
1 files changed, 0 insertions, 45 deletions
diff --git a/Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua b/Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua
deleted file mode 100644
index e232c93..0000000
--- a/Resources/DefaultContent/Libraries/GameLab/Engine/Math/Vector4.lua
+++ /dev/null
@@ -1,45 +0,0 @@
-local Vector4 = GameLab.Class("GameLab.Engine.Math.Vector4")
-
-Vector4.Ctor = function (self, x, y, z, w)
- self.x = x or 0
- self.y = y or 0
- self.z = z or 0
- self.w = w or 0
-end
-
-Vector4.Magnitude = function (self)
-
-end
-
-Vector4.Normalized = function (self)
-
-end
-
-Vector4.SqrMagnitude = function (self)
-
-end
-
-Vector4.Distance = function (self, to)
-
-end
-
-Vector4.Dot = function(self, v)
-
-end
-
-Vector4.Lerp = function(self, v, t)
-
-end
-
-Vector4.Project = function (self, v)
-
-end
-
-Vector4.Scale = function(self, scale)
-
-end
-
-Vector4.one = Vector4.New(1,1,1,1)
-Vector4.zero = Vector4.New(0,0,0,0)
-
-return Vector4 \ No newline at end of file