home *** CD-ROM | disk | FTP | other *** search
- class com.neodelight.std.Vector3D extends com.neodelight.std.Vector
- {
- var z;
- var x;
- var y;
- function Vector3D(x, y, z)
- {
- super(x,y);
- this.z = z;
- }
- function copyOf()
- {
- return new com.neodelight.std.Vector3D(this.x,this.y,this.z);
- }
- function toString()
- {
- return "{x:" + this.x + ", y:" + this.y + ", z:" + this.z + "}";
- }
- }
-