Uses of Class
unlekker.geom.Vec3

Packages that use Vec3
unlekker.geom   
 

Uses of Vec3 in unlekker.geom
 

Fields in unlekker.geom declared as Vec3
 Vec3 BBox.center
           
 Vec3 BBox.dim
           
 Vec3 BBox.max
           
 Vec3 BBox.min
           
 Vec3[] Mesh.n
           
 Vec3[] Mesh.v
           
 

Methods in unlekker.geom that return Vec3
static Vec3 Vec3.abs(Vec3 v)
           
static Vec3 Vec3.add(Vec3 v1, Vec3 v2)
           
 Vec3 Vec3.cross(Vec3 v)
           
static Vec3 Vec3.fromPolar(float a, float b, float R)
          Calculates Cartesian point given a polar coordinate.
static Vec3 Vec3.fromPolar(Vec3 v)
           
static Vec3 Vec3.mult(Vec3 v, float m)
           
static Vec3 Vec3.mult(Vec3 v1, Vec3 v2)
           
static Vec3 Vec3.sub(Vec3 v1, Vec3 v2)
           
 

Methods in unlekker.geom with parameters of type Vec3
static Vec3 Vec3.abs(Vec3 v)
           
 void Vec3.add(Vec3 v)
           
static Vec3 Vec3.add(Vec3 v1, Vec3 v2)
           
 boolean Vec3.cmp(Vec3 v)
           
 Vec3 Vec3.cross(Vec3 v)
           
static float Vec3.distance(Vec3 v1, Vec3 v2)
           
 boolean Vec3.equals(Vec3 v)
           
static boolean Vec3.equals(Vec3 v1, Vec3 v2)
           
static Vec3 Vec3.fromPolar(Vec3 v)
           
static float Vec3.length(Vec3 v1)
           
 void Vec3.mult(Vec3 v)
           
static Vec3 Vec3.mult(Vec3 v, float m)
           
static Vec3 Vec3.mult(Vec3 v1, Vec3 v2)
           
 void Vec3.set(Vec3 v)
           
 void Vec3.sub(Vec3 v)
           
static Vec3 Vec3.sub(Vec3 v1, Vec3 v2)
           
 

Constructors in unlekker.geom with parameters of type Vec3
Vec3(Vec3 v)