Uses of Class
org.jbox2d.common.Vec3
-
Packages that use Vec3 Package Description org.jbox2d.common org.jbox2d.dynamics.joints org.jbox2d.pooling org.jbox2d.pooling.normal -
-
Uses of Vec3 in org.jbox2d.common
Fields in org.jbox2d.common declared as Vec3 Modifier and Type Field Description Vec3
Mat33. ex
Vec3
Mat33. ey
Vec3
Mat33. ez
Methods in org.jbox2d.common that return Vec3 Modifier and Type Method Description Vec3
Vec3. add(Vec3 argVec)
Vec3
Vec3. addLocal(Vec3 argVec)
Vec3
Vec3. clone()
static Vec3
Vec3. cross(Vec3 a, Vec3 b)
static Vec3
Mat33. mul(Mat33 A, Vec3 v)
Vec3
Vec3. mul(float argScalar)
Vec3
Vec3. mulLocal(float argScalar)
Vec3
Vec3. negate()
Vec3
Vec3. negateLocal()
Vec3
Vec3. set(float argX, float argY, float argZ)
Vec3
Vec3. set(Vec3 argVec)
Vec3
Mat33. solve33(Vec3 b)
Solve A * x = b, where b is a column vector.Vec3
Vec3. sub(Vec3 argVec)
Vec3
Vec3. subLocal(Vec3 argVec)
Methods in org.jbox2d.common with parameters of type Vec3 Modifier and Type Method Description 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 void
Vec3. crossToOutUnsafe(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)
static void
Mat33. mulToOutUnsafe(Mat33 A, Vec3 v, Vec3 out)
Vec3
Vec3. set(Vec3 argVec)
Vec3
Mat33. solve33(Vec3 b)
Solve A * x = b, where b is a column vector.void
Mat33. solve33ToOut(Vec3 b, Vec3 out)
Solve A * x = b, where b is a column vector.Vec3
Vec3. sub(Vec3 argVec)
Vec3
Vec3. subLocal(Vec3 argVec)
Constructors in org.jbox2d.common with parameters of type Vec3 Constructor Description Mat33(Vec3 argCol1, Vec3 argCol2, Vec3 argCol3)
Vec3(Vec3 argCopy)
-
Uses of Vec3 in org.jbox2d.dynamics.joints
Fields in org.jbox2d.dynamics.joints declared as Vec3 Modifier and Type Field Description private Vec3
PrismaticJoint. m_impulse
private Vec3
RevoluteJoint. m_impulse
private Vec3
WeldJoint. m_impulse
-
Uses of Vec3 in org.jbox2d.pooling
Methods in org.jbox2d.pooling that return Vec3 Modifier and Type Method Description Vec3
IWorldPool. popVec3()
Vec3[]
IWorldPool. popVec3(int num)
-
Uses of Vec3 in org.jbox2d.pooling.normal
Fields in org.jbox2d.pooling.normal with type parameters of type Vec3 Modifier and Type Field Description private OrderedStack<Vec3>
DefaultWorldPool. vec3s
Methods in org.jbox2d.pooling.normal that return Vec3 Modifier and Type Method Description Vec3
DefaultWorldPool. popVec3()
Vec3[]
DefaultWorldPool. popVec3(int argNum)
-