Merge "More improvements to the SensorManager documentation" into gingerbread
This commit is contained in:
committed by
Android (Google) Code Review
commit
ef52b5682d
@@ -20,24 +20,32 @@ package android.hardware;
|
|||||||
/**
|
/**
|
||||||
* Class representing a sensor. Use {@link SensorManager#getSensorList} to get
|
* Class representing a sensor. Use {@link SensorManager#getSensorList} to get
|
||||||
* the list of available Sensors.
|
* the list of available Sensors.
|
||||||
|
*
|
||||||
|
* @see SensorManager
|
||||||
|
* @see SensorEventListener
|
||||||
|
* @see SensorEvent
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public class Sensor {
|
public class Sensor {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A constant describing an accelerometer sensor type. See
|
* A constant describing an accelerometer sensor type. See
|
||||||
* {@link android.hardware.SensorEvent SensorEvent} for more details.
|
* {@link android.hardware.SensorEvent#values SensorEvent.values} for more
|
||||||
|
* details.
|
||||||
*/
|
*/
|
||||||
public static final int TYPE_ACCELEROMETER = 1;
|
public static final int TYPE_ACCELEROMETER = 1;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A constant describing a magnetic field sensor type. See
|
* A constant describing a magnetic field sensor type. See
|
||||||
* {@link android.hardware.SensorEvent SensorEvent} for more details.
|
* {@link android.hardware.SensorEvent#values SensorEvent.values} for more
|
||||||
|
* details.
|
||||||
*/
|
*/
|
||||||
public static final int TYPE_MAGNETIC_FIELD = 2;
|
public static final int TYPE_MAGNETIC_FIELD = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A constant describing an orientation sensor type. See
|
* A constant describing an orientation sensor type. See
|
||||||
* {@link android.hardware.SensorEvent SensorEvent} for more details.
|
* {@link android.hardware.SensorEvent#values SensorEvent.values} for more
|
||||||
|
* details.
|
||||||
*
|
*
|
||||||
* @deprecated use {@link android.hardware.SensorManager#getOrientation
|
* @deprecated use {@link android.hardware.SensorManager#getOrientation
|
||||||
* SensorManager.getOrientation()} instead.
|
* SensorManager.getOrientation()} instead.
|
||||||
@@ -50,7 +58,8 @@ public class Sensor {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A constant describing an light sensor type. See
|
* A constant describing an light sensor type. See
|
||||||
* {@link android.hardware.SensorEvent SensorEvent} for more details.
|
* {@link android.hardware.SensorEvent#values SensorEvent.values} for more
|
||||||
|
* details.
|
||||||
*/
|
*/
|
||||||
public static final int TYPE_LIGHT = 5;
|
public static final int TYPE_LIGHT = 5;
|
||||||
|
|
||||||
@@ -62,7 +71,8 @@ public class Sensor {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* A constant describing an proximity sensor type. See
|
* A constant describing an proximity sensor type. See
|
||||||
* {@link android.hardware.SensorEvent SensorEvent} for more details.
|
* {@link android.hardware.SensorEvent#values SensorEvent.values} for more
|
||||||
|
* details.
|
||||||
*/
|
*/
|
||||||
public static final int TYPE_PROXIMITY = 8;
|
public static final int TYPE_PROXIMITY = 8;
|
||||||
|
|
||||||
|
|||||||
@@ -28,17 +28,20 @@ package android.hardware;
|
|||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* The coordinate space is defined relative to the screen of the phone in its
|
* The coordinate-system is defined relative to the screen of the phone in its
|
||||||
* default orientation. The axes are not swapped when the device's screen
|
* default orientation. The axes are not swapped when the device's screen
|
||||||
* orientation changes.
|
* orientation changes.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* The OpenGL ES coordinate system is used. The origin is in the lower-left
|
* The X axis is horizontal and points to the right, the Y axis is vertical and
|
||||||
* corner with respect to the screen, with the X axis horizontal and pointing
|
* points up and the Z axis points towards the outside of the front face of the
|
||||||
* right, the Y axis vertical and pointing up and the Z axis pointing outside
|
* screen. In this system, coordinates behind the screen have negative Z values.
|
||||||
* the front face of the screen. In this system, coordinates behind the screen
|
* </p>
|
||||||
* have negative Z values.
|
*
|
||||||
|
* <p>
|
||||||
|
* <center><img src="../../../images/axis_device.png"
|
||||||
|
* alt="Sensors coordinate-system diagram." border="0" /></center>
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
@@ -46,87 +49,69 @@ package android.hardware;
|
|||||||
* Android 2D APIs where the origin is in the top-left corner.
|
* Android 2D APIs where the origin is in the top-left corner.
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <pre>
|
* @see SensorManager
|
||||||
* x<0 x>0
|
* @see SensorEvent
|
||||||
* ^
|
* @see Sensor
|
||||||
* |
|
|
||||||
* +-----------+--> y>0
|
|
||||||
* | |
|
|
||||||
* | |
|
|
||||||
* | |
|
|
||||||
* | | / z<0
|
|
||||||
* | | /
|
|
||||||
* | | /
|
|
||||||
* O-----------+/
|
|
||||||
* |[] [ ] []/
|
|
||||||
* +----------/+ y<0
|
|
||||||
* /
|
|
||||||
* /
|
|
||||||
* |/ z>0 (toward the sky)
|
|
||||||
*
|
*
|
||||||
* O: Origin (x=0,y=0,z=0)
|
|
||||||
* </pre>
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class SensorEvent {
|
public class SensorEvent {
|
||||||
/**
|
/**
|
||||||
* <p>
|
* <p>
|
||||||
* The length and contents of the values array vary depending on which
|
* The length and contents of the {@link #values values} array depends on
|
||||||
* {@link android.hardware.Sensor sensor} type is being monitored (see also
|
* which {@link android.hardware.Sensor sensor} type is being monitored (see
|
||||||
* {@link SensorEvent} for a definition of the coordinate system used):
|
* also {@link SensorEvent} for a definition of the coordinate system used).
|
||||||
* </p>
|
* </p>
|
||||||
*
|
*
|
||||||
* <h3>{@link android.hardware.Sensor#TYPE_ORIENTATION
|
* <h4>{@link android.hardware.Sensor#TYPE_ACCELEROMETER
|
||||||
* Sensor.TYPE_ORIENTATION}:</h3> All values are angles in degrees.
|
* Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
|
||||||
*
|
|
||||||
* <ul>
|
|
||||||
* <p>
|
|
||||||
* values[0]: Azimuth, angle between the magnetic north direction and the Y
|
|
||||||
* axis, around the Z axis (0 to 359). 0=North, 90=East, 180=South, 270=West
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* values[1]: Pitch, rotation around X axis (-180 to 180), with positive
|
|
||||||
* values when the z-axis moves <b>toward</b> the y-axis.
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* values[2]: Roll, rotation around Y axis (-90 to 90), with positive values
|
|
||||||
* when the x-axis moves <b>toward</b> the z-axis.
|
|
||||||
* </ul>
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* <b>Important note:</b> For historical reasons the roll angle is positive
|
|
||||||
* in the clockwise direction (mathematically speaking, it should be
|
|
||||||
* positive in the counter-clockwise direction).
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* <b>Note:</b> This definition is different from <b>yaw, pitch and roll</b>
|
|
||||||
* used in aviation where the X axis is along the long side of the plane
|
|
||||||
* (tail to nose).
|
|
||||||
*
|
|
||||||
* <p>
|
|
||||||
* <b>Note:</b> This sensor type exists for legacy reasons, please use
|
|
||||||
* {@link android.hardware.SensorManager#getRotationMatrix
|
|
||||||
* getRotationMatrix()} in conjunction with
|
|
||||||
* {@link android.hardware.SensorManager#remapCoordinateSystem
|
|
||||||
* remapCoordinateSystem()} and
|
|
||||||
* {@link android.hardware.SensorManager#getOrientation getOrientation()} to
|
|
||||||
* compute these values instead.
|
|
||||||
*
|
|
||||||
* <h3>{@link android.hardware.Sensor#TYPE_ACCELEROMETER
|
|
||||||
* Sensor.TYPE_ACCELEROMETER}:</h3>
|
|
||||||
* All values are in SI units (m/s^2) and measure the acceleration applied
|
|
||||||
* to the phone minus the force of gravity.
|
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <p>
|
* <p>
|
||||||
* values[0]: Acceleration minus Gx on the x-axis
|
* values[0]: Acceleration minus Gx on the x-axis
|
||||||
|
* </p>
|
||||||
* <p>
|
* <p>
|
||||||
* values[1]: Acceleration minus Gy on the y-axis
|
* values[1]: Acceleration minus Gy on the y-axis
|
||||||
|
* </p>
|
||||||
* <p>
|
* <p>
|
||||||
* values[2]: Acceleration minus Gz on the z-axis
|
* values[2]: Acceleration minus Gz on the z-axis
|
||||||
|
* </p>
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
|
* A sensor of this type measures the acceleration applied to the device
|
||||||
|
* (<b>Ad</b>). Conceptually, it does so by measuring forces applied to the
|
||||||
|
* sensor itself (<b>Fs</b>) using the relation:
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <b><center>Ad = - <20>Fs / mass</center></b>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* In particular, the force of gravity is always influencing the measured
|
||||||
|
* acceleration:
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <b><center>Ad = -g - <20>F / mass</center></b>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For this reason, when the device is sitting on a table (and obviously not
|
||||||
|
* accelerating), the accelerometer reads a magnitude of <b>g</b> = 9.81
|
||||||
|
* m/s^2
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Similarly, when the device is in free-fall and therefore dangerously
|
||||||
|
* accelerating towards to ground at 9.81 m/s^2, its accelerometer reads a
|
||||||
|
* magnitude of 0 m/s^2.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* It should be apparent that in order to measure the real acceleration of
|
||||||
|
* the device, the contribution of the force of gravity must be eliminated.
|
||||||
|
* This can be achieved by applying a <i>high-pass</i> filter. Conversely, a
|
||||||
|
* <i>low-pass</i> filter can be used to isolate the force of gravity.
|
||||||
|
* </p>
|
||||||
|
* <p>
|
||||||
* <u>Examples</u>:
|
* <u>Examples</u>:
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>When the device lies flat on a table and is pushed on its left side
|
* <li>When the device lies flat on a table and is pushed on its left side
|
||||||
@@ -143,20 +128,20 @@ public class SensorEvent {
|
|||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* <h3>{@link android.hardware.Sensor#TYPE_MAGNETIC_FIELD
|
* <h4>{@link android.hardware.Sensor#TYPE_MAGNETIC_FIELD
|
||||||
* Sensor.TYPE_MAGNETIC_FIELD}:</h3>
|
* Sensor.TYPE_MAGNETIC_FIELD}:</h4>
|
||||||
* All values are in micro-Tesla (uT) and measure the ambient magnetic field
|
* All values are in micro-Tesla (uT) and measure the ambient magnetic field
|
||||||
* in the X, Y and Z axis.
|
* in the X, Y and Z axis.
|
||||||
*
|
*
|
||||||
* <h3>{@link android.hardware.Sensor#TYPE_LIGHT Sensor.TYPE_LIGHT}:</h3>
|
* <h4>{@link android.hardware.Sensor#TYPE_LIGHT Sensor.TYPE_LIGHT}:</h4>
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <p>
|
* <p>
|
||||||
* values[0]: Ambient light level in SI lux units
|
* values[0]: Ambient light level in SI lux units
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <h3>{@link android.hardware.Sensor#TYPE_PROXIMITY Sensor.TYPE_PROXIMITY}:
|
* <h4>{@link android.hardware.Sensor#TYPE_PROXIMITY Sensor.TYPE_PROXIMITY}:
|
||||||
* </h3>
|
* </h4>
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <p>
|
* <p>
|
||||||
@@ -164,9 +149,57 @@ public class SensorEvent {
|
|||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* Note that some proximity sensors only support a binary "close" or "far"
|
* <b>Note:</b> Some proximity sensors only support a binary <i>near</i> or
|
||||||
* measurement. In this case, the sensor should report its maxRange value in
|
* <i>far</i> measurement. In this case, the sensor should report its
|
||||||
* the "far" state and a value less than maxRange in the "near" state.
|
* {@link android.hardware.Sensor#getMaximumRange() maximum range} value in
|
||||||
|
* the <i>far</i> state and a lesser value in the <i>near</i> state.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <h4>{@link android.hardware.Sensor#TYPE_ORIENTATION
|
||||||
|
* Sensor.TYPE_ORIENTATION}:</h4> All values are angles in degrees.
|
||||||
|
*
|
||||||
|
* <ul>
|
||||||
|
* <p>
|
||||||
|
* values[0]: Azimuth, angle between the magnetic north direction and the
|
||||||
|
* y-axis, around the z-axis (0 to 359). 0=North, 90=East, 180=South,
|
||||||
|
* 270=West
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* values[1]: Pitch, rotation around x-axis (-180 to 180), with positive
|
||||||
|
* values when the z-axis moves <b>toward</b> the y-axis.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* values[2]: Roll, rotation around y-axis (-90 to 90), with positive values
|
||||||
|
* when the x-axis moves <b>toward</b> the z-axis.
|
||||||
|
* </p>
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <b>Note:</b> This definition is different from <b>yaw, pitch and roll</b>
|
||||||
|
* used in aviation where the X axis is along the long side of the plane
|
||||||
|
* (tail to nose).
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <b>Note:</b> This sensor type exists for legacy reasons, please use
|
||||||
|
* {@link android.hardware.SensorManager#getRotationMatrix
|
||||||
|
* getRotationMatrix()} in conjunction with
|
||||||
|
* {@link android.hardware.SensorManager#remapCoordinateSystem
|
||||||
|
* remapCoordinateSystem()} and
|
||||||
|
* {@link android.hardware.SensorManager#getOrientation getOrientation()} to
|
||||||
|
* compute these values instead.
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <b>Important note:</b> For historical reasons the roll angle is positive
|
||||||
|
* in the clockwise direction (mathematically speaking, it should be
|
||||||
|
* positive in the counter-clockwise direction).
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
|
* @see SensorEvent
|
||||||
|
* @see GeomagneticField
|
||||||
*/
|
*/
|
||||||
public final float[] values;
|
public final float[] values;
|
||||||
|
|
||||||
|
|||||||
@@ -46,6 +46,30 @@ import java.util.List;
|
|||||||
* {@link android.content.Context#getSystemService(java.lang.String)
|
* {@link android.content.Context#getSystemService(java.lang.String)
|
||||||
* Context.getSystemService()} with the argument
|
* Context.getSystemService()} with the argument
|
||||||
* {@link android.content.Context#SENSOR_SERVICE}.
|
* {@link android.content.Context#SENSOR_SERVICE}.
|
||||||
|
*
|
||||||
|
* <pre class="prettyprint">
|
||||||
|
* public class SensorActivity extends Activity, implements SensorEventListener {
|
||||||
|
* private final SensorManager mSensorManager;
|
||||||
|
* private final Sensor mAccelerometer;
|
||||||
|
*
|
||||||
|
* public SensorActivity() {
|
||||||
|
* mSensorManager = (SensorManager)getSystemService(SENSOR_SERVICE);
|
||||||
|
* mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
|
||||||
|
* mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_NORMAL);
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* public void onAccuracyChanged(Sensor sensor, int accuracy) {
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* public abstract void onSensorChanged(SensorEvent event) {
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
* @see SensorEventListener
|
||||||
|
* @see SensorEvent
|
||||||
|
* @see Sensor
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public class SensorManager
|
public class SensorManager
|
||||||
{
|
{
|
||||||
@@ -678,6 +702,9 @@ public class SensorManager
|
|||||||
* of sensors requested
|
* of sensors requested
|
||||||
*
|
*
|
||||||
* @return a list of sensors matching the asked type.
|
* @return a list of sensors matching the asked type.
|
||||||
|
*
|
||||||
|
* @see #getDefaultSensor(int)
|
||||||
|
* @see Sensor
|
||||||
*/
|
*/
|
||||||
public List<Sensor> getSensorList(int type) {
|
public List<Sensor> getSensorList(int type) {
|
||||||
// cache the returned lists the first time
|
// cache the returned lists the first time
|
||||||
@@ -712,6 +739,9 @@ public class SensorManager
|
|||||||
* of sensors requested
|
* of sensors requested
|
||||||
*
|
*
|
||||||
* @return the default sensors matching the asked type.
|
* @return the default sensors matching the asked type.
|
||||||
|
*
|
||||||
|
* @see #getSensorList(int)
|
||||||
|
* @see Sensor
|
||||||
*/
|
*/
|
||||||
public Sensor getDefaultSensor(int type) {
|
public Sensor getDefaultSensor(int type) {
|
||||||
// TODO: need to be smarter, for now, just return the 1st sensor
|
// TODO: need to be smarter, for now, just return the 1st sensor
|
||||||
@@ -909,9 +939,13 @@ public class SensorManager
|
|||||||
*
|
*
|
||||||
* @param listener
|
* @param listener
|
||||||
* a SensorEventListener object
|
* a SensorEventListener object
|
||||||
|
*
|
||||||
* @param sensor
|
* @param sensor
|
||||||
* the sensor to unregister from
|
* the sensor to unregister from
|
||||||
*
|
*
|
||||||
|
* @see #unregisterListener(SensorEventListener)
|
||||||
|
* @see #registerListener(SensorEventListener, Sensor, int)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public void unregisterListener(SensorEventListener listener, Sensor sensor) {
|
public void unregisterListener(SensorEventListener listener, Sensor sensor) {
|
||||||
unregisterListener((Object)listener, sensor);
|
unregisterListener((Object)listener, sensor);
|
||||||
@@ -923,6 +957,9 @@ public class SensorManager
|
|||||||
* @param listener
|
* @param listener
|
||||||
* a SensorListener object
|
* a SensorListener object
|
||||||
*
|
*
|
||||||
|
* @see #unregisterListener(SensorEventListener, Sensor)
|
||||||
|
* @see #registerListener(SensorEventListener, Sensor, int)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public void unregisterListener(SensorEventListener listener) {
|
public void unregisterListener(SensorEventListener listener) {
|
||||||
unregisterListener((Object)listener);
|
unregisterListener((Object)listener);
|
||||||
@@ -950,6 +987,10 @@ public class SensorManager
|
|||||||
* @return <code>true</code> if the sensor is supported and successfully
|
* @return <code>true</code> if the sensor is supported and successfully
|
||||||
* enabled.
|
* enabled.
|
||||||
*
|
*
|
||||||
|
* @see #registerListener(SensorEventListener, Sensor, int, Handler)
|
||||||
|
* @see #unregisterListener(SensorEventListener)
|
||||||
|
* @see #unregisterListener(SensorEventListener, Sensor)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public boolean registerListener(SensorEventListener listener, Sensor sensor, int rate) {
|
public boolean registerListener(SensorEventListener listener, Sensor sensor, int rate) {
|
||||||
return registerListener(listener, sensor, rate, null);
|
return registerListener(listener, sensor, rate, null);
|
||||||
@@ -981,6 +1022,10 @@ public class SensorManager
|
|||||||
*
|
*
|
||||||
* @return true if the sensor is supported and successfully enabled.
|
* @return true if the sensor is supported and successfully enabled.
|
||||||
*
|
*
|
||||||
|
* @see #registerListener(SensorEventListener, Sensor, int)
|
||||||
|
* @see #unregisterListener(SensorEventListener)
|
||||||
|
* @see #unregisterListener(SensorEventListener, Sensor)
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public boolean registerListener(SensorEventListener listener, Sensor sensor, int rate,
|
public boolean registerListener(SensorEventListener listener, Sensor sensor, int rate,
|
||||||
Handler handler) {
|
Handler handler) {
|
||||||
@@ -1115,6 +1160,12 @@ public class SensorManager
|
|||||||
* points towards the magnetic North Pole.</li>
|
* points towards the magnetic North Pole.</li>
|
||||||
* <li>Z points towards the sky and is perpendicular to the ground.</li>
|
* <li>Z points towards the sky and is perpendicular to the ground.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* <center><img src="../../../images/axis_globe.png"
|
||||||
|
* alt="Sensors coordinate-system diagram." border="0" /></center>
|
||||||
|
* </p>
|
||||||
|
*
|
||||||
* <p>
|
* <p>
|
||||||
* <hr>
|
* <hr>
|
||||||
* <p>
|
* <p>
|
||||||
@@ -1221,6 +1272,10 @@ public class SensorManager
|
|||||||
* @return <code>true</code> on success, <code>false</code> on failure (for
|
* @return <code>true</code> on success, <code>false</code> on failure (for
|
||||||
* instance, if the device is in free fall). On failure the output
|
* instance, if the device is in free fall). On failure the output
|
||||||
* matrices are not modified.
|
* matrices are not modified.
|
||||||
|
*
|
||||||
|
* @see #getInclination(float[])
|
||||||
|
* @see #getOrientation(float[], float[])
|
||||||
|
* @see #remapCoordinateSystem(float[], int, int, float[])
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public static boolean getRotationMatrix(float[] R, float[] I,
|
public static boolean getRotationMatrix(float[] R, float[] I,
|
||||||
@@ -1292,7 +1347,13 @@ public class SensorManager
|
|||||||
*
|
*
|
||||||
* @param I
|
* @param I
|
||||||
* inclination matrix see {@link #getRotationMatrix}.
|
* inclination matrix see {@link #getRotationMatrix}.
|
||||||
|
*
|
||||||
* @return The geomagnetic inclination angle in radians.
|
* @return The geomagnetic inclination angle in radians.
|
||||||
|
*
|
||||||
|
* @see #getRotationMatrix(float[], float[], float[], float[])
|
||||||
|
* @see #getOrientation(float[], float[])
|
||||||
|
* @see GeomagneticField
|
||||||
|
*
|
||||||
*/
|
*/
|
||||||
public static float getInclination(float[] I) {
|
public static float getInclination(float[] I) {
|
||||||
if (I.length == 9) {
|
if (I.length == 9) {
|
||||||
@@ -1373,6 +1434,8 @@ public class SensorManager
|
|||||||
* @return <code>true</code> on success. <code>false</code> if the input
|
* @return <code>true</code> on success. <code>false</code> if the input
|
||||||
* parameters are incorrect, for instance if X and Y define the same
|
* parameters are incorrect, for instance if X and Y define the same
|
||||||
* axis. Or if inR and outR don't have the same length.
|
* axis. Or if inR and outR don't have the same length.
|
||||||
|
*
|
||||||
|
* @see #getRotationMatrix(float[], float[], float[], float[])
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public static boolean remapCoordinateSystem(float[] inR, int X, int Y,
|
public static boolean remapCoordinateSystem(float[] inR, int X, int Y,
|
||||||
@@ -1464,14 +1527,23 @@ public class SensorManager
|
|||||||
* <li>values[2]: <i>roll</i>, rotation around the Y axis.</li>
|
* <li>values[2]: <i>roll</i>, rotation around the Y axis.</li>
|
||||||
* </ul>
|
* </ul>
|
||||||
* <p>
|
* <p>
|
||||||
|
* <center><img src="../../../images/axis_device.png"
|
||||||
|
* alt="Sensors coordinate-system diagram." border="0" /></center>
|
||||||
|
* </p>
|
||||||
|
* <p>
|
||||||
* All three angles above are in <b>radians</b> and <b>positive</b> in the
|
* All three angles above are in <b>radians</b> and <b>positive</b> in the
|
||||||
* <b>counter-clockwise</b> direction.
|
* <b>counter-clockwise</b> direction.
|
||||||
*
|
*
|
||||||
* @param R
|
* @param R
|
||||||
* rotation matrix see {@link #getRotationMatrix}.
|
* rotation matrix see {@link #getRotationMatrix}.
|
||||||
|
*
|
||||||
* @param values
|
* @param values
|
||||||
* an array of 3 floats to hold the result.
|
* an array of 3 floats to hold the result.
|
||||||
|
*
|
||||||
* @return The array values passed as argument.
|
* @return The array values passed as argument.
|
||||||
|
*
|
||||||
|
* @see #getRotationMatrix(float[], float[], float[], float[])
|
||||||
|
* @see GeomagneticField
|
||||||
*/
|
*/
|
||||||
public static float[] getOrientation(float[] R, float values[]) {
|
public static float[] getOrientation(float[] R, float values[]) {
|
||||||
/*
|
/*
|
||||||
|
|||||||
BIN
docs/html/images/axis_device.png
Normal file
BIN
docs/html/images/axis_device.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
BIN
docs/html/images/axis_globe.png
Normal file
BIN
docs/html/images/axis_globe.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
Reference in New Issue
Block a user