0378c7016f
Convert files to Unix EOL mode, de-tabify and strip trailing whitespace.
50 lines
971 B
Plaintext
50 lines
971 B
Plaintext
//////////////////////////////////////////////////////////////////////////////////
|
|
//////////////////////////////////////////////////////////////////////////////////
|
|
class BaseVector {
|
|
constructor(...)
|
|
{
|
|
if(vargv.len() >= 3) {
|
|
x = vargv[0];
|
|
y = vargv[1];
|
|
z = vargv[2];
|
|
}
|
|
}
|
|
|
|
|
|
x = 0;
|
|
y = 0;
|
|
z = 0;
|
|
}
|
|
|
|
class Vector3 extends BaseVector {
|
|
function _add(other)
|
|
{
|
|
if(other instanceof this.getclass())
|
|
return ::Vector3(x+other.x,y+other.y,z+other.z);
|
|
else
|
|
throw "wrong parameter";
|
|
}
|
|
function Print()
|
|
{
|
|
::print(x+","+y+","+z+"\n");
|
|
}
|
|
}
|
|
|
|
local v0 = Vector3(1,2,3)
|
|
local v1 = Vector3(11,12,13)
|
|
local v2 = v0 + v1;
|
|
v2.Print();
|
|
|
|
FakeNamespace <- {
|
|
Utils = {}
|
|
}
|
|
|
|
class FakeNamespace.Utils.SuperClass {
|
|
constructor()
|
|
{
|
|
::print("FakeNamespace.Utils.SuperClass")
|
|
}
|
|
}
|
|
|
|
local testy = FakeNamespace.Utils.SuperClass();
|