HomeSort by relevance Sort by last modified time
    Searched refs:Matrix3f (Results 1 - 25 of 66) sorted by null

1 2 3

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix3fTest.java 18 import android.renderscript.Matrix3f;
29 void checkIdentity(Matrix3f m, float delta) {
54 void checkData(Matrix3f m, float[] data, float delta) {
60 void checkData(Matrix3f m, float[] data) {
67 Matrix3f m = new Matrix3f();
71 m = new Matrix3f(setData);
77 Matrix3f m = new Matrix3f(setData);
87 Matrix3f m = new Matrix3f()
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleMesh.java 36 import com.jme3.math.Matrix3f;
84 public abstract void updateParticleData(Particle[] particles, Camera cam, Matrix3f inverseRotation);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/shapes/infos/
ChildCollisionShape.java 10 import com.jme3.math.Matrix3f;
21 public Matrix3f rotation;
27 public ChildCollisionShape(Vector3f location, Matrix3f rotation, CollisionShape shape) {
36 capsule.write(rotation, "rotation", new Matrix3f());
43 rotation = (Matrix3f) capsule.readSavable("rotation", new Matrix3f());
  /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);
SixDofJoint.java 41 import com.jme3.math.Matrix3f;
62 Matrix3f rotA, rotB;
78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) {
96 rotA = new Matrix3f();
97 rotB = new Matrix3f();
163 native long createJoint(long objectIdA, long objectIdB, Vector3f pivotA, Matrix3f rotA, Vector3f pivotB, Matrix3f rotB, boolean useLinearReferenceFrameA);
SliderJoint.java 39 import com.jme3.math.Matrix3f;
52 protected Matrix3f rotA, rotB;
62 public SliderJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) {
76 this.rotA = new Matrix3f();
77 this.rotB = new Matrix3f();
537 private native long createJoint(long objectIdA, long objectIdB, Vector3f pivotA, Matrix3f rotA, Vector3f pivotB, Matrix3f rotB, boolean useLinearReferenceFrameA);
  /frameworks/base/graphics/java/android/renderscript/
Matrix3f.java 27 public class Matrix3f {
32 public Matrix3f() {
44 public Matrix3f(float[] dataArray) {
103 public void load(Matrix3f src) {
210 public void loadMultiply(Matrix3f lhs, Matrix3f rhs) {
232 public void multiply(Matrix3f rhs) {
233 Matrix3f tmp = new Matrix3f();
248 Matrix3f tmp = new Matrix3f()
    [all...]
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
Matrix3f.java 27 public class Matrix3f {
32 public Matrix3f() {
44 public Matrix3f(float[] dataArray) {
103 public void load(Matrix3f src) {
210 public void loadMultiply(Matrix3f lhs, Matrix3f rhs) {
232 public void multiply(Matrix3f rhs) {
233 Matrix3f tmp = new Matrix3f();
248 Matrix3f tmp = new Matrix3f()
    [all...]
  /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...]
SixDofJoint.java 44 import com.jme3.math.Matrix3f;
78 public SixDofJoint(PhysicsRigidBody nodeA, PhysicsRigidBody nodeB, Vector3f pivotA, Vector3f pivotB, Matrix3f rotA, Matrix3f rotB, boolean useLinearReferenceFrameA) {
102 Transform transA = new Transform(Converter.convert(new Matrix3f()));
105 Transform transB = new Transform(Converter.convert(new Matrix3f()));
164 Transform transA = new Transform(Converter.convert(new Matrix3f()));
167 Transform transB = new Transform(Converter.convert(new Matrix3f()));
  /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...]
PhysicsRigidBody.java 44 import com.jme3.math.Matrix3f;
154 public void setPhysicsRotation(Matrix3f rotation) {
158 private native void setPhysicsRotation(long objectId, Matrix3f rotation);
199 public Matrix3f getPhysicsRotationMatrix(Matrix3f rot) {
201 rot = new Matrix3f();
207 private native void getPhysicsRotationMatrix(long objectId, Matrix3f rot);
227 public Matrix3f getPhysicsRotationMatrix() {
228 Matrix3f mtx = new Matrix3f();
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
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...]
  /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/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/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/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...]
  /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/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/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/core/com/jme3/effect/influencers/
NewtonianParticleInfluencer.java 10 import com.jme3.math.Matrix3f;
43 Matrix3f m = new Matrix3f();
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
LevelsV4.java 24 import android.renderscript.Matrix3f;
42 Matrix3f satMatrix = new Matrix3f();

Completed in 326 milliseconds

1 2 3