HomeSort by relevance Sort by last modified time
    Searched refs:angles (Results 1 - 13 of 13) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
ConstraintRotLimit.java 89 float[] angles = new float[3]; local
92 rotations[frame].toAngles(angles);
93 this.rotLimit(angles, ipo.calculateValue(frame));
94 rotations[frame].fromAngles(angles);
102 float[] angles = ownerTransform.getRotation().toAngles(null); local
103 this.rotLimit(angles, ipo.calculateValue(0));
104 ownerTransform.getRotation().fromAngles(angles);
110 * This method computes new constrained angles.
112 * @param angles
113 * angles to be altered
    [all...]
ConstraintRotLike.java 62 float[] angles = new float[3]; local
64 rotations[frame].toAngles(angles);
65 this.rotLike(rotations[frame], angles, targetAngles, ipo.calculateValue(frame));
  /frameworks/base/media/java/android/media/audiofx/
Virtualizer.java 69 * Parameter ID to query the virtual speaker angles for a channel mask / device configuration.
172 * Checks if a configuration is supported, and query the virtual speaker angles.
175 * @param angles if non-null: array in which the angles will be written. If null, no angles
183 private boolean getAnglesInt(int inputChannelMask, int deviceType, int[] angles)
193 if ((angles != null) && (angles.length < (nbChannels * 3))) {
194 Log.e(TAG, "Size of array for angles cannot accomodate number of channels in mask ("
197 "Virtualizer: array for channel / angle pairs is too small: is " + angles.lengt
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Quaternion.java 160 * collection of rotation angles.
162 * @param angles
163 * the angles of rotation (x, y, z) that will define the
166 public Quaternion(float[] angles) {
167 fromAngles(angles);
220 * angles (y,r,p).
222 * @param angles
223 * the Euler angles of rotation (in radians).
225 public Quaternion fromAngles(float[] angles) {
226 if (angles.length != 3) {
    [all...]
Matrix4f.java     [all...]
  /cts/tests/tests/media/src/android/media/cts/
VirtualizerTest.java 350 int[] angles = new int[3*6]; local
353 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
357 VIRTUALIZATION_MODES[m], angles);
361 //check if the number of angles matched the expected number of channels for
365 int speakerIdentification = angles[k*3];
469 int[] angles = new int[3*6]; local
475 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
479 VIRTUALIZATION_MODES[m], angles);
490 Arrays.fill(angles,AudioFormat.CHANNEL_INVALID);
494 VIRTUALIZATION_MODES[m], angles);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestBoneRagdoll.java 154 float[] angles = new float[3];
155 model.getLocalRotation().toAngles(angles);
156 q.fromAngleAxis(angles[1], Vector3f.UNIT_Y);
158 if (angles[0] < 0) {
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 447 float angles[2]; local
480 angles[i] = acos(cos_a)/M_PI;
483 if (angles[0] + angles[1] > 1.) {
487 angles[0] = 1. - angles[0];
488 angles[1] = 1. - angles[1];
502 float kappa = 2.*KAPPA * sign * offset * angles[i];
  /external/eigen/bench/btl/data/
gnuplot_common_settings.hh 18 set angles radians
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorManagerStaticTest.java 133 // avoid directly checking the rotation angles to avoid corner cases
191 // Avoid directly comparing rotation angles. Instead, compare the rotation matrix.
702 private static float [] mat9VRot(float [] angles) {
703 assertTrue(angles.length == 3);
705 float [] R = mat9Rot(SensorManager.AXIS_Z, -angles[0]);
707 R = mat9Mul(R, mat9Rot(SensorManager.AXIS_X, -angles[1]));
709 R = mat9Mul(R, mat9Rot(SensorManager.AXIS_Y, angles[2]));
  /external/eigen/demos/opengl/
quaternion_demo.cpp 59 static const float angles [10] = { local
83 Vector3f newC = c + ( (AngleAxisf(angles[j*2+1], ax0)
84 * AngleAxisf(angles[j*2+0] * (l==1 ? 0.35 : 0.5), ax1)) * ax0)
188 // Euler angles slerp
610 but = new QRadioButton("euler angles");
613 but->setToolTip("use Euler angles to interpolate orientations");
  /external/skia/src/pathops/
SkPathOpsDebug.cpp 376 SkTDArray<const SkOpAngle*>(angles);
379 angles.push(next);
384 SK_ALWAYSBREAK(!angles.contains(next));
  /prebuilts/sdk/21/
android.jar 

Completed in 388 milliseconds