Lines Matching defs:values

22  * course the sensor's {@link SensorEvent#values data}.
37 * screen. In this system, coordinates behind the screen have negative Z values.
59 * The length and contents of the {@link #values values} array depends on
65 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
68 * <li> values[0]: Acceleration minus Gx on the x-axis </li>
69 * <li> values[1]: Acceleration minus Gy on the y-axis </li>
70 * <li> values[2]: Acceleration minus Gz on the z-axis </li>
117 * gravity[0] = alpha * gravity[0] + (1 - alpha) * event.values[0];
118 * gravity[1] = alpha * gravity[1] + (1 - alpha) * event.values[1];
119 * gravity[2] = alpha * gravity[2] + (1 - alpha) * event.values[2];
121 * linear_acceleration[0] = event.values[0] - gravity[0];
122 * linear_acceleration[1] = event.values[1] - gravity[1];
123 * linear_acceleration[2] = event.values[2] - gravity[2];
146 * All values are in micro-Tesla (uT) and measure the ambient magnetic field
150 * </h4> All values are in radians/second and measure the rate of rotation
160 * <li> values[0]: Angular speed around the x-axis </li>
161 * <li> values[1]: Angular speed around the y-axis </li>
162 * <li> values[2]: Angular speed around the z-axis </li>
181 * float axisX = event.values[0];
182 * float axisY = event.values[1];
183 * float axisZ = event.values[2];
222 * <li>values[0]: Ambient light level in SI lux units </li>
227 * <li>values[0]: Atmospheric pressure in hPa (millibar) </li>
234 * <li>values[0]: Proximity sensor distance measured in centimeters </li>
253 * including gravity. All values have units of m/s^2. The coordinate system is the same as is
291 * <li> values[0]: x*sin(&#952/2) </li>
292 * <li> values[1]: y*sin(&#952/2) </li>
293 * <li> values[2]: z*sin(&#952/2) </li>
294 * <li> values[3]: cos(&#952/2) </li>
295 * <li> values[4]: estimated heading Accuracy (in radians) (-1 if unavailable)</li>
297 * <p> values[3], originally optional, will always be present from SDK Level 18 onwards.
298 * values[4] is a new value that has been added in SDK Level 18.
302 * Sensor.TYPE_ORIENTATION}:</h4> All values are angles in degrees.
305 * <li> values[0]: Azimuth, angle between the magnetic north direction and the
311 * values[1]: Pitch, rotation around x-axis (-180 to 180), with positive
312 * values when the z-axis moves <b>toward</b> the y-axis.
316 * values[2]: Roll, rotation around the y-axis (-90 to 90)
336 * compute these values instead.
348 * <li> values[0]: Relative ambient air humidity in percent </li>
405 * <li> values[0]: ambient (room) temperature in degree Celsius.</li>
417 * The values array is shown below:
419 * <li> values[0] = x_uncalib </li>
420 * <li> values[1] = y_uncalib </li>
421 * <li> values[2] = z_uncalib </li>
422 * <li> values[3] = x_bias </li>
423 * <li> values[4] = y_bias </li>
424 * <li> values[5] = z_bias </li>
430 * calibration is not applied. The values are in micro-Tesla (uT).
435 * The values are in micro-Tesla (uT).
454 * for a detailed description of the values. This sensor will not have
460 * All values are in radians/second and measure the rate of rotation
476 * <li> values[0] : angular speed (w/o drift compensation) around the X axis in rad/s </li>
477 * <li> values[1] : angular speed (w/o drift compensation) around the Y axis in rad/s </li>
478 * <li> values[2] : angular speed (w/o drift compensation) around the Z axis in rad/s </li>
479 * <li> values[3] : estimated drift around X axis in rad/s </li>
480 * <li> values[4] : estimated drift around Y axis in rad/s </li>
481 * <li> values[5] : estimated drift around Z axis in rad/s </li>
484 * <p><b>Pro Tip:</b> Always use the length of the values array while performing operations
497 * <li> values[0]: x*sin(&#952/2) </li>
498 * <li> values[1]: y*sin(&#952/2) </li>
499 * <li> values[2]: z*sin(&#952/2) </li>
500 * <li> values[3]: cos(&#952/2) </li>
503 * <li> values[4]: Translation along x axis from an arbitrary origin. </li>
504 * <li> values[5]: Translation along y axis from an arbitrary origin. </li>
505 * <li> values[6]: Translation along z axis from an arbitrary origin. </li>
507 * <li> values[7]: Delta quaternion rotation x*sin(&#952/2) </li>
508 * <li> values[8]: Delta quaternion rotation y*sin(&#952/2) </li>
509 * <li> values[9]: Delta quaternion rotation z*sin(&#952/2) </li>
510 * <li> values[10]: Delta quaternion rotation cos(&#952/2) </li>
512 * <li> values[11]: Delta translation along x axis. </li>
513 * <li> values[12]: Delta translation along y axis. </li>
514 * <li> values[13]: Delta translation along z axis. </li>
516 * <li> values[14]: Sequence number </li>
531 * <li> values[0]: 1.0 </li>
545 * <li> values[0]: 1.0 </li>
558 * <li> values[0]: confidence</li>
580 * <li> values[0]: off-body state</li>
584 * Valid values for off-body state:
605 * Sensor.TYPE_ACCELEROMETER_UNCALIBRATED}:</h4> All values are in SI
613 * The values array is shown below:
615 * <li> values[0] = x_uncalib without bias compensation </li>
616 * <li> values[1] = y_uncalib without bias compensation </li>
617 * <li> values[2] = z_uncalib without bias compensation </li>
618 * <li> values[3] = estimated x_bias </li>
619 * <li> values[4] = estimated y_bias </li>
620 * <li> values[5] = estimated z_bias </li>
633 public final float[] values;
653 values = new float[valueSize];