Androidに関する英文の和訳をお願いします。
Android OSに関する英文を、意味の通る日本語にして頂きたいです。
機械翻訳を行ったのちに自分なりに考えてみたのですがなかなか理解出来ずに困っています。
英語が得意な方、下記の文章を意味の通る日本語に訳して頂けないでしょうか。
対象の英文は、下記サイトの次の3項目についてです。
http://developer.android.com/reference/android/hardware/SensorEvent.html
Sensor.TYPE_GRAVITY:
Sensor.TYPE_LINEAR_ACCELERATION:
Sensor.TYPE_ROTATION_VECTOR:
以下、対象箇所のコピペとなります。
Sensor.TYPE_GRAVITY:
A three dimensional vector indicating the direction and magnitude of gravity. Units are m/s^2. The coordinate system is the same as is used by the acceleration sensor.
Sensor.TYPE_LINEAR_ACCELERATION:
A three dimensional vector indicating acceleration along each device axis, not including gravity. All values have units of m/s^2. The coordinate system is the same as is used by the acceleration sensor.
Sensor.TYPE_ROTATION_VECTOR:
The rotation vector represents the orientation of the device as a combination of an angle and an axis, in which the device has rotated through an angle theta around an axis <x, y, z>. The three elements of the rotation vector are <x*sin(theta/2), y*sin(theta/2), z*sin(theta/2)>, such that the magnitude of the rotation vector is equal to sin(theta/2), and the direction of the rotation vector is equal to the direction of the axis of rotation. The three elements of the rotation vector are equal to the last three components of a unit quaternion <cos(theta/2), x*sin(theta/2), y*sin(theta/2), z*sin(theta/2)>. Elements of the rotation vector are unitless. The x,y, and z axis are defined in the same way as the acceleration sensor.
お礼
回答ありがとうございます。 そういう構文があったのですね。 大変助かりました。