Uses of Class
org.jbox2d.common.Vec3

Packages that use Vec3
org.jbox2d.common This package contains various math and utility functions used by all of JBox2d, including vectors (Vec2), matrices (Mat22), transforms (XForm), colors (Color3f), and CCD sweeps (Sweep), as well as the global settings for the simulation (Settings). 
 

Uses of Vec3 in org.jbox2d.common
 

Fields in org.jbox2d.common declared as Vec3
 Vec3 Mat33.col1
           
 Vec3 Mat33.col2
           
 Vec3 Mat33.col3
           
 

Methods in org.jbox2d.common that return Vec3
 Vec3 Vec3.add(Vec3 argVec)
           
 Vec3 Vec3.addLocal(Vec3 argVec)
           
 Vec3 Vec3.clone()
           
static Vec3 Vec3.cross(Vec3 a, Vec3 b)
           
 Vec3 Vec3.mul(float argScalar)
           
static Vec3 Mat33.mul(Mat33 A, Vec3 v)
           
 Vec3 Vec3.mulLocal(float argScalar)
           
 Vec3 Vec3.negate()
           
 Vec3 Vec3.negateLocal()
           
 Vec3 Mat33.solve(Vec3 b)
           
 Vec3 Vec3.sub(Vec3 argVec)
           
 Vec3 Vec3.subLocal(Vec3 argVec)
           
 

Methods in org.jbox2d.common with parameters of type Vec3
 Vec3 Vec3.add(Vec3 argVec)
           
 Vec3 Vec3.addLocal(Vec3 argVec)
           
static Vec3 Vec3.cross(Vec3 a, Vec3 b)
           
static void Vec3.crossToOut(Vec3 a, Vec3 b, Vec3 out)
           
static float Vec3.dot(Vec3 a, Vec3 b)
           
static Vec3 Mat33.mul(Mat33 A, Vec3 v)
           
static void Mat33.mulToOut(Mat33 A, Vec3 v, Vec3 out)
           
 void Vec3.set(Vec3 argVec)
           
 Vec3 Mat33.solve(Vec3 b)
           
 void Mat33.solveToOut(Vec3 b, Vec3 out)
           
 Vec3 Vec3.sub(Vec3 argVec)
           
 Vec3 Vec3.subLocal(Vec3 argVec)
           
 

Constructors in org.jbox2d.common with parameters of type Vec3
Mat33(Vec3 argCol1, Vec3 argCol2, Vec3 argCol3)
           
Vec3(Vec3 argCopy)