File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 113
113
`R21` is a 3x3 matrix that transforms a vector from frame 1 to frame 2. `h1` is a
114
114
vector resolved in frame 1. `h2` is the same vector in frame 2.
115
115
116
- Typical usage:
116
+ Typical usage (world to local) :
117
117
```julia
118
- resolve2(ori(frame_a), a_0 - g_0)
118
+ g_a = resolve2(ori(frame_a), a_0 - g_0)
119
119
```
120
120
"""
121
121
resolve2 (R21:: RotationMatrix , v1) = R21 * collect (v1)
@@ -126,9 +126,9 @@ resolve2(R21::RotationMatrix, v1) = R21 * collect(v1)
126
126
`R12` is a 3x3 matrix that transforms a vector from frame 1 to frame 2. `h2` is a
127
127
vector resolved in frame 2. `h1` is the same vector in frame 1.
128
128
129
- Typical usage:
129
+ Typical usage (local to world) :
130
130
```julia
131
- resolve1(ori(frame_a), r_ab)
131
+ r_wb = resolve1(ori(frame_a), r_ab)
132
132
```
133
133
"""
134
134
resolve1 (R21:: RotationMatrix , v2) = R21' collect (v2)
You can’t perform that action at this time.
0 commit comments