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 113113`R21` is a 3x3 matrix that transforms a vector from frame 1 to frame 2. `h1` is a
114114vector resolved in frame 1. `h2` is the same vector in frame 2.
115115
116- Typical usage:
116+ Typical usage (world to local) :
117117```julia
118- resolve2(ori(frame_a), a_0 - g_0)
118+ g_a = resolve2(ori(frame_a), a_0 - g_0)
119119```
120120"""
121121resolve2 (R21:: RotationMatrix , v1) = R21 * collect (v1)
@@ -126,9 +126,9 @@ resolve2(R21::RotationMatrix, v1) = R21 * collect(v1)
126126`R12` is a 3x3 matrix that transforms a vector from frame 1 to frame 2. `h2` is a
127127vector resolved in frame 2. `h1` is the same vector in frame 1.
128128
129- Typical usage:
129+ Typical usage (local to world) :
130130```julia
131- resolve1(ori(frame_a), r_ab)
131+ r_wb = resolve1(ori(frame_a), r_ab)
132132```
133133"""
134134resolve1 (R21:: RotationMatrix , v2) = R21' collect (v2)
You can’t perform that action at this time.
0 commit comments