Skip to content

Commit

Permalink
Fix a few typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
kellertuer committed Jan 17, 2025
1 parent 05c17ca commit d97cc8a
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions src/groups/special_euclidean_group.jl
Original file line number Diff line number Diff line change
Expand Up @@ -323,10 +323,10 @@ function ManifoldsBase.exp!(
X,
)
init_constants!(G, g)
Y = submanifold_component(M, X, :Rotation)
v = submanifold_component(M, X, :Translation)
R = submanifold_component(M, g, :Rotation)
t = submanifold_component(M, g, :Translation)
Y = submanifold_component(G, X, :Rotation)
v = submanifold_component(G, X, :Translation)
R = submanifold_component(G, g, :Rotation)
t = submanifold_component(G, g, :Translation)
α = norm(Y) / sqrt(2) # skew symmetric, so the norm counts everything “twice” in the sqrt.
SO2, T2 = _SOn_and_Tn(G)
# (1) use the space of R to compute the U(α)
Expand Down Expand Up @@ -387,10 +387,10 @@ function ManifoldsBase.exp!(
X,
)
init_constants!(G, g)
Y = submanifold_component(M, X, :Rotation)
v = submanifold_component(M, X, :Translation)
R = submanifold_component(M, g, :Rotation)
t = submanifold_component(M, g, :Translation)
Y = submanifold_component(G, X, :Rotation)
v = submanifold_component(G, X, :Translation)
R = submanifold_component(G, g, :Rotation)
t = submanifold_component(G, g, :Translation)
α = norm(Y) / sqrt(2) # skew symmetric, so the norm counts everything “twice” in the sqrt.
SO3, T3 = _SOn_and_Tn(G)
# (1) use the space of R to compute the U(α)
Expand Down Expand Up @@ -594,10 +594,10 @@ function ManifoldsBase.log!(
g,
)
init_constants!(LieAlgebra(G), X)
R = submanifold_component(M, g, :Rotation)
t = submanifold_component(M, g, :Translation)
Y = submanifold_component(M, X, :Rotation)
v = submanifold_component(M, X, :Translation)
R = submanifold_component(G, g, :Rotation)
t = submanifold_component(G, g, :Translation)
Y = submanifold_component(G, X, :Rotation)
v = submanifold_component(G, X, :Translation)
SO2, T2 = _SOn_and_Tn(G)
log!(SO2, Y, Identity(SO2), R)
α = norm(Y) / sqrt(2) # skew symmetric, so the norm counts everything “twice” in the sqrt.
Expand Down Expand Up @@ -649,10 +649,10 @@ function ManifoldsBase.log!(
g,
)
init_constants!(LieAlgebra(G), X)
R = submanifold_component(M, g, :Rotation)
t = submanifold_component(M, g, :Translation)
Y = submanifold_component(M, X, :Rotation)
v = submanifold_component(M, X, :Translation)
R = submanifold_component(G, g, :Rotation)
t = submanifold_component(G, g, :Translation)
Y = submanifold_component(G, X, :Rotation)
v = submanifold_component(G, X, :Translation)
SO3, T3 = _SOn_and_Tn(G)
log!(SO3, Y, Identity(SO3), R)
α = norm(Y) / sqrt(2) # skew symmetric, so the norm counts everything “twice” in the sqrt.
Expand Down

0 comments on commit d97cc8a

Please sign in to comment.