HomeSort by relevance Sort by last modified time
    Searched full:matrix3f (Results 26 - 50 of 170) sorted by null

12 3 4 5 6 7

  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/joints/
ConeJoint.java 39 import com.jme3.math.Matrix3f;
54 protected Matrix3f rotA, rotB;
69 this.rotA = new Matrix3f();
70 this.rotB = new Matrix3f();
78 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) {
105 capsule.write(rotA, "rotA", new Matrix3f());
106 capsule.write(rotB, "rotB", new Matrix3f());
118 this.rotA = (Matrix3f) capsule.readSavable("rotA", new Matrix3f());
    [all...]
SixDofSpringJoint.java 35 import com.jme3.math.Matrix3f;
63 public SixDofSpringJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) {
90 native long createJoint(long objectIdA, long objectIdB, Vector3f pivotA, Matrix3f rotA, Vector3f pivotB, Matrix3f rotB, boolean useLinearReferenceFrameA);
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_joints_SixDofSpringJoint.h 53 * Signature: (JJLcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Lcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Z)J
jmeClasses.cpp 68 jclass jmeClasses::Matrix3f;
166 Matrix3f = (jclass)env->NewGlobalRef(env->FindClass("com/jme3/math/Matrix3f"));
171 Matrix3f_set = env->GetMethodID(Matrix3f, "set", "(IIF)Lcom/jme3/math/Matrix3f;");
172 Matrix3f_get = env->GetMethodID(Matrix3f, "get", "(II)F");
173 Matrix3f_m00 = env->GetFieldID(Matrix3f, "m00", "F");
178 Matrix3f_m01 = env->GetFieldID(Matrix3f, "m01", "F");
179 Matrix3f_m02 = env->GetFieldID(Matrix3f, "m02", "F");
180 Matrix3f_m10 = env->GetFieldID(Matrix3f, "m10", "F")
    [all...]
com_jme3_bullet_collision_shapes_CompoundCollisionShape.h 21 * Signature: (JJLcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;)J
com_jme3_bullet_joints_SixDofJoint.h 61 * Signature: (JJLcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Lcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Z)J
com_jme3_bullet_objects_infos_RigidBodyMotionState.h 37 * Signature: (JLcom/jme3/math/Matrix3f;)V
com_jme3_bullet_joints_SixDofSpringJoint.cpp 74 * Signature: (JJLcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Lcom/jme3/math/Vector3f;Lcom/jme3/math/Matrix3f;Z)J
  /external/eigen/doc/examples/
TutorialLinAlgExSolveColPivHouseholderQR.cpp 9 Matrix3f A;
Tutorial_PartialLU_solve.cpp 10 Matrix3f A;
  /external/eigen/doc/snippets/
Tutorial_solve_multiple_rhs.cpp 0 Matrix3f A(3,3);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
ConeJoint.java 42 import com.jme3.math.Matrix3f;
55 protected Matrix3f rotA, rotB;
70 this.rotA = new Matrix3f();
71 this.rotB = new Matrix3f();
79 public ConeJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB) {
102 capsule.write(rotA, "rotA", new Matrix3f());
103 capsule.write(rotB, "rotB", new Matrix3f());
115 this.rotA = (Matrix3f) capsule.readSavable("rotA", new Matrix3f());
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 40 import com.jme3.math.Matrix3f;
120 public void setPhysicsRotation(Matrix3f rotation) {
124 private native void setPhysicsRotation(long objectId, Matrix3f rotation);
165 public Matrix3f getPhysicsRotationMatrix(Matrix3f rot) {
167 rot = new Matrix3f();
173 private native void getPhysicsRotationMatrix(long objectId, Matrix3f rot);
193 public Matrix3f getPhysicsRotationMatrix() {
194 Matrix3f mtx = new Matrix3f();
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Matrix3f.java 42 * <code>Matrix3f</code> defines a 3x3 matrix. Matrix data is maintained
50 public final class Matrix3f implements Savable, Cloneable, java.io.Serializable {
54 private static final Logger logger = Logger.getLogger(Matrix3f.class.getName());
58 public static final Matrix3f ZERO = new Matrix3f(0, 0, 0, 0, 0, 0, 0, 0, 0);
59 public static final Matrix3f IDENTITY = new Matrix3f();
62 * Constructor instantiates a new <code>Matrix3f</code> object. The
66 public Matrix3f() {
92 public Matrix3f(float m00, float m01, float m02, float m10, float m11
    [all...]
Eigen3f.java 56 public Eigen3f(Matrix3f data) {
60 public void calculateEigen(Matrix3f data) {
66 Matrix3f scaledData = new Matrix3f(data);
83 Matrix3f tempMatrix = new Matrix3f(scaledData);
146 private float scaleMatrix(Matrix3f mat) {
187 private void computeVectors(Matrix3f mat, Vector3f vect, int index1,
277 * the Matrix3f to analyze.
286 private boolean positiveRank(Matrix3f matrix, float[] maxMagnitudeStore, Vector3f maxRowStore) {
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 44 import com.jme3.math.Matrix3f;
66 protected Transform tempTrans = new Transform(Converter.convert(new Matrix3f()));
117 public void setPhysicsRotation(Matrix3f rotation) {
167 public Matrix3f getPhysicsRotationMatrix(Matrix3f rot) {
169 rot = new Matrix3f();
194 public Matrix3f getPhysicsRotationMatrix() {
269 capsule.write(getPhysicsRotationMatrix(new Matrix3f()), "physicsRotation", new Matrix3f());
280 setPhysicsRotation(((Matrix3f) capsule.readSavable("physicsRotation", new Matrix3f())))
    [all...]
PhysicsRigidBody.java 49 import com.jme3.math.Matrix3f;
74 protected Transform tempTrans = new Transform(new javax.vecmath.Matrix3f());
75 protected javax.vecmath.Matrix3f tempMatrix = new javax.vecmath.Matrix3f();
163 public void setPhysicsRotation(Matrix3f rotation) {
191 public Matrix3f getPhysicsRotationMatrix() {
209 * @param rotation the rotation of the actual physics object is stored in this Matrix3f
211 public Matrix3f getPhysicsRotationMatrix(Matrix3f rotation) {
213 rotation = new Matrix3f();
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
VrPipline1.java 19 import android.renderscript.Matrix3f;
84 Matrix3f matrix3f = new Matrix3f(mMatrixBuffer); local
85 scriptC_vr.set_matrix3(matrix3f);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 39 import com.jme3.math.Matrix3f;
68 // Transform transA = new Transform(Converter.convert(new Matrix3f()));
70 // children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
72 addChildShape(shape, location, new Matrix3f());
80 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) {
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) {
132 private native long addChildShape(long objectId, long childId, Vector3f location, Matrix3f rotation);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/util/
Converter.java 105 public static com.jme3.math.Quaternion convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Quaternion newQuaternion) {
143 public static javax.vecmath.Matrix3f convert(com.jme3.math.Quaternion oldQuaternion, javax.vecmath.Matrix3f newMatrix) {
176 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix) {
177 com.jme3.math.Matrix3f newMatrix = new com.jme3.math.Matrix3f();
182 public static com.jme3.math.Matrix3f convert(javax.vecmath.Matrix3f oldMatrix, com.jme3.math.Matrix3f newMatrix)
    [all...]
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
RigidBodyMotionState.java 35 import com.jme3.math.Matrix3f;
50 private Matrix3f worldRotation = new Matrix3f();
112 public Matrix3f getWorldRotation() {
117 private native void getWorldRotation(long stateId, Matrix3f vec);
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 42 import com.jme3.math.Matrix3f;
70 Transform transA = new Transform(Converter.convert(new Matrix3f()));
72 children.add(new ChildCollisionShape(location.clone(), new Matrix3f(), shape));
81 public void addChildShape(CollisionShape shape, Vector3f location, Matrix3f rotation) {
92 private void addChildShapeDirect(CollisionShape shape, Vector3f location, Matrix3f rotation) {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/infos/
RigidBodyMotionState.java 38 import com.jme3.math.Matrix3f;
51 private Transform motionStateTrans = new Transform(Converter.convert(new Matrix3f()));
53 private Matrix3f worldRotation = new Matrix3f();
137 public Matrix3f getWorldRotation() {
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/influencers/
NewtonianParticleInfluencer.java 10 import com.jme3.math.Matrix3f;
43 Matrix3f m = new Matrix3f();
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
LevelsV4.java 24 import android.renderscript.Matrix3f;
42 Matrix3f satMatrix = new Matrix3f();

Completed in 2820 milliseconds

12 3 4 5 6 7