-
Notifications
You must be signed in to change notification settings - Fork 3
add orientations #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add orientations #121
Changes from 1 commit
4d74c52
fd02371
1c1fa7f
c04d06d
5566007
eb0f59e
9690019
557c3ae
1aca938
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,9 +47,22 @@ robot, exactly 1 metre away. | |
|
||
{{% added_in update="2018-jan" feature="spherical coordinates" %}} | ||
|
||
## Diagram | ||
### Diagram | ||
|
||
The following diagram shows the orientation of the Cartesian axes relative to | ||
the camera as well as the angles which describe the spherical coordinate space. | ||
|
||
 | ||
|
||
## Orientation Coordinates | ||
|
||
|
||
Orientation represents the rotation of a marker around the x, y, and z axes. | ||
|
||
Rotations are applied in order of Z, Y, X. | ||
|
||
The following table visually explains what positive and negative rotations represent. | ||
| | | | ||
|
||
|:-:|:-:| | ||
| <img src="/img/api/coordinate-orientations/m45x0y0z.png?width=200px" style="margin:0"/> `rot_x_degrees = 45` | <img src="/img/api/coordinate-orientations/m-45x0y0z.png?width=200px" style="margin:0"/> `rot_x_degrees = -45` | | ||
|
||
| <img src="/img/api/coordinate-orientations/m0x45y0z.png?width=200px" style="margin:0"/> `rot_y_degrees = 45` | <img src="/img/api/coordinate-orientations/m0x-45y0z.png?width=200px" style="margin:0"/> `rot_y_degrees = -45` | | ||
| <img src="/img/api/coordinate-orientations/m0x0y45z.png?width=200px" style="margin:0"/> `rot_z_degrees = 45` | <img src="/img/api/coordinate-orientations/m0x0y-45z.png?width=200px" style="margin:0"/> `rot_z_degrees= -45` | | ||
| <img src="/img/api/coordinate-orientations/m0x0y0z.png?width=200px" style="margin:0"/> `0` in all axes | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really like the additional sentence just to link, could we word orientation into the initial one. Perhaps:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed in 5566007