/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
RenderableBase.java | 22 import android.renderscript.Matrix4f;
|
RenderableGroup.java | 22 import android.renderscript.Matrix4f;
|
SceneGraphBase.java | 26 import android.renderscript.Matrix4f;
|
TextureParam.java | 25 import android.renderscript.Matrix4f;
|
/external/eigen/doc/ |
I05_FixedSizeVectorizable.dox | 18 \li Eigen::Matrix4f 28 The array of coefficients of a fixed-size Eigen object is a plain "static array", it is not dynamically allocated. For example, the data behind a Matrix4f is just a "float array[16]".
|
tutorial.cpp | 9 Eigen::Matrix4f m4 = Eigen::Matrix4f::Identity(); 50 Eigen::Matrix4f other = (m4 * m4).lazy(); // forces lazy evaluation
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/ |
CollisionData.java | 39 import com.jme3.math.Matrix4f; 49 Matrix4f worldMatrix,
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicColorMatrixThunker.java | 42 public void setColorMatrix(Matrix4f m) { 43 mN.setColorMatrix(new android.renderscript.Matrix4f(m.getArray()));
|
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/ |
GalaxyRS.java | 82 private Matrix4f getProjectionNormalized(int w, int h) { 84 Matrix4f m1 = new Matrix4f(); 85 Matrix4f m2 = new Matrix4f(); 107 Matrix4f proj = new Matrix4f(); 111 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
|
/external/jmonkeyengine/engine/src/core/com/jme3/shadow/ |
ShadowUtil.java | 36 import com.jme3.math.Matrix4f;
192 public static BoundingBox computeUnionBound(GeometryList list, Matrix4f mat) {
247 public static BoundingBox computeBoundForPoints(Vector3f[] pts, Matrix4f mat) {
287 Matrix4f viewProjMatrix = shadowCam.getViewProjectionMatrix();
288 Matrix4f projMatrix = shadowCam.getProjectionMatrix();
308 Matrix4f cropMatrix = new Matrix4f(scaleX, 0f, 0f, offsetX,
314 Matrix4f result = new Matrix4f();
364 Matrix4f viewProjMatrix = shadowCam.getViewProjectionMatrix(); [all...] |
/packages/wallpapers/NoiseField/src/com/android/noisefield/ |
NoiseFieldRS.java | 9 import android.renderscript.Matrix4f; 88 private Matrix4f getProjectionNormalized(int w, int h) { 90 Matrix4f m1 = new Matrix4f(); 91 Matrix4f m2 = new Matrix4f(); 113 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
|
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/ |
PhaseBeamRS.java | 8 import android.renderscript.Matrix4f; 103 private Matrix4f getProjectionNormalized(int w, int h) { 105 Matrix4f m1 = new Matrix4f(); 106 Matrix4f m2 = new Matrix4f(); 128 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
ScriptGroupTest.java | 34 import android.renderscript.Matrix4f; 55 Matrix4f m = new Matrix4f(); 86 Matrix4f m = new Matrix4f(); 127 Matrix4f m = new Matrix4f(); 171 Matrix4f m = new Matrix4f();
|
IntrinsicColorMatrix.java | 26 private void subtest(int w, int h, Matrix4f mat, Float4 add, 32 mat = new Matrix4f(); 61 Matrix4f mat = new Matrix4f();
|
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
android.renderscript.ProgramVertexFixedFunction.Constants.html | 115 <A NAME="android.renderscript.ProgramVertexFixedFunction.Constants.setModelview_changed(android.renderscript.Matrix4f)"></A> 116 <nobr><code>void</code> <A HREF="../../../../reference/android/renderscript/ProgramVertexFixedFunction.Constants.html#setModelview(android.renderscript.Matrix4f)" target="_top"><code>setModelview</code></A>(<code>Matrix4f</code>) </nobr> 125 <A NAME="android.renderscript.ProgramVertexFixedFunction.Constants.setProjection_changed(android.renderscript.Matrix4f)"></A> 126 <nobr><code>void</code> <A HREF="../../../../reference/android/renderscript/ProgramVertexFixedFunction.Constants.html#setProjection(android.renderscript.Matrix4f)" target="_top"><code>setProjection</code></A>(<code>Matrix4f</code>) </nobr> 135 <A NAME="android.renderscript.ProgramVertexFixedFunction.Constants.setTexture_changed(android.renderscript.Matrix4f)"></A> 136 <nobr><code>void</code> <A HREF="../../../../reference/android/renderscript/ProgramVertexFixedFunction.Constants.html#setTexture(android.renderscript.Matrix4f)" target="_top"><code>setTexture</code></A>(<code>Matrix4f</code>) </nobr>
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
UiTest.java | 33 import android.renderscript.Matrix4f; 175 private Matrix4f getProjectionNormalized(int w, int h) { 177 Matrix4f m1 = new Matrix4f(); 178 Matrix4f m2 = new Matrix4f(); 200 Matrix4f projNorm = getProjectionNormalized(1280, 720); 221 Matrix4f proj = new Matrix4f();
|
/external/eigen/demos/opengl/ |
camera.h | 79 const Eigen::Matrix4f& projectionMatrix(void) const; 90 Eigen::Vector3f unProject(const Eigen::Vector2f& uv, float depth, const Eigen::Matrix4f& invModelview) const; 105 mutable Eigen::Matrix4f mProjectionMatrix;
|
camera.cpp | 147 Matrix4f mrot, mt, mtm; 232 const Matrix4f& Camera::projectionMatrix(void) const 248 Matrix4f inv = mViewMatrix.inverse().matrix(); 252 Vector3f Camera::unProject(const Vector2f& uv, float depth, const Matrix4f& invModelview) const
|
/external/eigen/test/ |
prec_inverse_4x4.cpp | 60 CALL_SUBTEST_1((inverse_permutation_4x4<Matrix4f>())); 61 CALL_SUBTEST_1(( inverse_general_4x4<Matrix4f>(200000 * g_repeat) ));
|
product_small.cpp | 39 CALL_SUBTEST_5( product(Matrix4f()) );
|
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/util/ |
EntropyComputeUtil.java | 5 import com.jme3.math.Matrix4f; 59 terrainBlock.collideWith(ray, Matrix4f.IDENTITY, bbox, results);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
GroupTest.java | 53 Matrix4f m = new Matrix4f();
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/ |
ObjectHelper.java | 44 import com.jme3.math.Matrix4f;
300 Matrix4f parentInv = pParent.isNull() ? Matrix4f.IDENTITY : this.getMatrix(objectStructure, "parentinv");
303 Matrix4f globalMatrix = new Matrix4f();
307 Matrix4f localMatrix = parentInv.mult(globalMatrix);
342 public Matrix4f getMatrix(Structure structure, String matrixName) {
356 public Matrix4f getMatrix(Structure structure, String matrixName, boolean applyFixUpAxis) {
357 Matrix4f result = new Matrix4f();
[all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Matrix4f.java | 42 * <code>Matrix4f</code> defines and maintains a 4x4 matrix in row major order.
56 public final class Matrix4f implements Savable, Cloneable, java.io.Serializable {
60 private static final Logger logger = Logger.getLogger(Matrix4f.class.getName());
65 public static final Matrix4f ZERO = new Matrix4f(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0);
66 public static final Matrix4f IDENTITY = new Matrix4f();
73 public Matrix4f() {
80 public Matrix4f(float m00, float m01, float m02, float m03,
104 * Create a new Matrix4f, given data in column-major format. 2292 Matrix4f matrix4f = new Matrix4f(); local [all...] |
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/ |
SimpleModelView.java | 19 import android.renderscript.Matrix4f; 47 private Matrix4f mIdentityMatrix = new Matrix4f(); 182 mRender.onPostureChanged(new Matrix4f(mRotationMatrix));
|