|
|
|
User Rating: Rated by: |
Fair (2.3/5) 16 user(s) |
|
|
|
com.wis.math.alg.Vector description |
|
|
com.wis.math.alg.Vector implements the behaviours of the Vector Class
Implements the behaviours of the Vector Class. Provides instance and static methods for manipulation of a Vector object.
I've swayed from using '$' as a class-based variable identifier for this class due to the increased usage of UI-defined class variables for this group of classes: Point, Vector, Quaternion, Col, and ColMC classes all reflect this format. Also, there are method duplications to support calls from other classes which can referenced through ClassInstanceName.classMethod() or the static Vector.classMethod().
usage:
var inst:Vector = new Vector(vx,vy[,vz]);
parameters:
vx (Number) -- x-axis value of vector. vy (Number) -- y-axis value of vector. vz (Number) -- z-axis value of vector.
|
|