HomeSort by relevance Sort by last modified time
    Searched full:matrix4f (Results 1 - 25 of 175) sorted by null

1 2 3 4 5 6 7

  /external/eigen/doc/snippets/
SelfAdjointEigenSolver_SelfAdjointEigenSolver.cpp 1 SelfAdjointEigenSolver<Matrix4f> es;
2 Matrix4f X = Matrix4f::Random(4,4);
3 Matrix4f A = X + X.transpose();
6 es.compute(A + Matrix4f::Identity(4,4)); // re-use es to compute eigenvalues of A+I
HessenbergDecomposition_matrixH.cpp 0 Matrix4f A = MatrixXf::Random(4,4);
  /external/eigen/doc/examples/
Tutorial_simple_example_fixed_size.cpp 10 Matrix4f m4 = Matrix4f::Identity();
Tutorial_BlockOperations_corner.cpp 8 Eigen::Matrix4f m;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix4fTest.java 18 import android.renderscript.Matrix4f;
30 void checkIdentity(Matrix4f m, float delta) {
55 void checkData(Matrix4f m, float[] data, float delta) {
61 void checkData(Matrix4f m, float[] data) {
68 Matrix4f m = new Matrix4f();
73 m = new Matrix4f(setData);
79 Matrix4f m = new Matrix4f(setData);
89 Matrix4f m = new Matrix4f()
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
MatrixTransform.java 22 import android.renderscript.Matrix4f;
30 Matrix4f mLocalMatrix;
32 mLocalMatrix = new Matrix4f();
35 public void setMatrix(Matrix4f matrix) {
40 public Matrix4f getMatrix() {
41 return new Matrix4f(mLocalMatrix.getArray());
PointLight.java 22 import android.renderscript.Matrix4f;
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 206 Matrix4f mModel;
207 Matrix4f mProjection;
208 Matrix4f mTexture;
228 mModel = new Matrix4f();
229 mProjection = new Matrix4f();
230 mTexture = new Matrix4f();
231 setModelview(new Matrix4f());
232 setProjection(new Matrix4f());
233 setTexture(new Matrix4f());
247 private void addToBuffer(int offset, Matrix4f m)
    [all...]
Matrix4f.java 27 public class Matrix4f {
32 public Matrix4f() {
44 public Matrix4f(float[] dataArray) {
111 public void load(Matrix4f src) {
226 public void loadMultiply(Matrix4f lhs, Matrix4f rhs) {
329 Matrix4f m1 = new Matrix4f();
330 Matrix4f m2 = new Matrix4f();
    [all...]
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
ColorMatrix.java 23 import android.renderscript.Matrix4f;
43 Matrix4f m = new Matrix4f();
UsageIO.java 28 import android.renderscript.Matrix4f;
43 Matrix4f m = new Matrix4f();
Blur25G.java 28 import android.renderscript.Matrix4f;
94 Matrix4f m = new Matrix4f();
GroupTest.java 27 import android.renderscript.Matrix4f;
60 Matrix4f m = new Matrix4f();
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
ColorMatrix.java 23 import android.renderscript.Matrix4f;
44 Matrix4f m = new Matrix4f();
GroupTest.java 27 import android.renderscript.Matrix4f;
60 Matrix4f m = new Matrix4f();
  /cts/tests/tests/rsg/src/android/renderscriptgraphics/cts/
ProgramVertexFixedFunctionTest.java 24 import android.renderscript.Matrix4f;
50 pva.setModelview(new Matrix4f());
53 pva.setProjection(new Matrix4f());
56 pva.setTexture(new Matrix4f());
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 4 import com.jme3.math.Matrix4f;
198 Matrix4f m = this.getParentWorldTransformMatrix();
200 Matrix4f matrix = this.toMatrix(transform);
224 Matrix4f m = this.getParentWorldTransformMatrix();
252 public Matrix4f getWorldTransformMatrix() {
254 Matrix4f result = new Matrix4f();
260 Matrix4f result = new Matrix4f();
269 public Matrix4f getParentWorldTransformMatrix() {
    [all...]
ConstraintDistLimit.java 4 import com.jme3.math.Matrix4f;
71 Matrix4f targetWorldMatrix = target.getWorldTransformMatrix();
73 Matrix4f m = this.owner.getParentWorldTransformMatrix();
75 Matrix4f ownerWorldMatrix = this.owner.getWorldTransformMatrix();
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix4f.java 27 public class Matrix4f {
32 public Matrix4f() {
44 public Matrix4f(float[] dataArray) {
111 public void load(Matrix4f src) {
226 public void loadMultiply(Matrix4f lhs, Matrix4f rhs) {
329 Matrix4f m1 = new Matrix4f();
330 Matrix4f m2 = new Matrix4f();
    [all...]
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 7 import android.renderscript.Matrix4f;
126 private Matrix4f getProjectionNormalized(int w, int h) {
127 Matrix4f m1 = new Matrix4f();
128 Matrix4f m2 = new Matrix4f();
150 Matrix4f proj = new Matrix4f();
152 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
163 Matrix4f proj = new Matrix4f()
    [all...]
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
ColorMatrix.java 36 Matrix4f m = new Matrix4f();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 8 import com.jme3.math.Matrix4f;
33 private Matrix4f armatureMatrix;
43 private Matrix4f restMatrix;
45 private Matrix4f inverseTotalTransformation;
47 private Matrix4f inverseParentMatrix;
64 public BoneContext(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
85 private BoneContext(Structure boneStructure, BoneContext parent, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
110 private void computeRestMatrix(Matrix4f objectToArmatureMatrix) {
116 inverseParentMatrix = Matrix4f.IDENTITY.clone();
174 Matrix4f pose = this.restMatrix.clone();
    [all...]
  /external/eigen/test/
unalignedassert.cpp 40 Matrix4f m;
88 construct_at_boundary<Matrix4f>(16);
114 VERIFY_RAISES_ASSERT(construct_at_boundary<Matrix4f>(8));
  /external/eigen/test/eigen2/
eigen2_product_small.cpp 20 CALL_SUBTEST_5( product(Matrix4f()) );
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullRenderer.java 38 import com.jme3.math.Matrix4f;
83 public void setWorldMatrix(Matrix4f worldMatrix) {
86 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {

Completed in 249 milliseconds

1 2 3 4 5 6 7