Geometric Product
group gp
The geometric product extends the exterior product with a notion of a metric. When the subspace intersection of the operands of two basis elements is non-zero, instead of the product extinguishing, the grade collapses and a scalar weight is included in the final result according to the metric. The geometric product can be used to build rotations, and by extension, rotations and translations in projective space.
Rotor composition
kln::rotor r1{ang1, x1, y1, z1};
kln::rotor r2{ang2, x2, y2, z2};
// Compose rotors with the geometric product
kln::rotor r3 = r1 * r2;; // r3 combines r2 and r1 in that order
Two reflections
kln::plane p1{x1, y1, z1, d1};
kln::plane p2{x2, y2, z2, d2};
// The geometric product of two planes combines their reflections
kln::motor m3 = p1 * p2; // m3 combines p2 and p1 in that order
// If p1 and p2 were parallel, m3 would be a translation. Otherwise,
// m3 would be a rotation.
Another common usage of the geometric product is to create a transformation that takes one entity to another. Suppose we have two entities \(a\) and \(b\) and suppose that both entities are normalized such that \(a^2 = b^2 = 1\). Then, the action created by \(\sqrt{ab}\) is the action that maps \(b\) to \(a\).
Motor between two lines
kln::line l1{mx1, my1, mz1, dx1, dy1, dz1};
kln::line l2{mx2, my2, mz2, dx2, dy2, dz2};
// Ensure lines are normalized if they aren't already
l1.normalize();
l2.normalize();
kln::motor m = kln::sqrt(l1 * l2);
kln::line l3 = m(l2);
// l3 will be projectively equivalent to l1.
Also provided are division operators that multiply the first argument by the inverse of the second argument.
Summary
Members | Descriptions |
---|---|
public motor KLN_VEC_CALL operator* (plane a,plane b) noexcept |
Construct a motor \(m\) such that \(\sqrt{m}\) takes plane \(b\) to plane \(a\). |
public motor KLN_VEC_CALL operator* (plane a,point b) noexcept |
|
public motor KLN_VEC_CALL operator* (point b,plane a) noexcept |
|
public rotor KLN_VEC_CALL operator* (branch a,branch b) noexcept |
Generate a rotor \(r\) such that \(\widetilde{\sqrt{r}}\) takes branch \(b\) to branch \(a\). |
public motor KLN_VEC_CALL operator* (line a,line b) noexcept |
Generates a motor \(m\) that produces a screw motion about the common normal to lines \(a\) and \(b\). The motor given by \(\sqrt{m}\) takes \(b\) to \(a\) provided that \(a\) and \(b\) are both normalized. |
public translator KLN_VEC_CALL operator* (point a,point b) noexcept |
Generates a translator \(t\) that produces a displacement along the line between points \(a\) and \(b\). The translator given by \(\sqrt{t}\) takes \(b\) to \(a\). |
public rotor KLN_VEC_CALL operator* (rotor a,rotor b) noexcept |
Composes two rotational actions such that the produced rotor has the same effect as applying rotor \(b\), then rotor \(a\). |
public line KLN_VEC_CALL operator* (dual a,line b) noexcept |
The product of a dual number and a line effectively weights the line with a rotational and translational quantity. Subsequent exponentiation will produce a motor along the screw axis of line \(b\) with rotation and translation given by half the scalar and pseudoscalar parts of the dual number \(a\) respectively. |
public line KLN_VEC_CALL operator* (line b,dual a) noexcept |
|
public motor KLN_VEC_CALL operator* (rotor a,translator b) noexcept |
Compose the action of a translator and rotor (b will be applied, then a ) |
public motor KLN_VEC_CALL operator* (translator b,rotor a) noexcept |
Compose the action of a rotor and translator (a will be applied, then b ) |
public translator KLN_VEC_CALL operator* (translator a,translator b) noexcept |
Compose the action of two translators (this operation is commutative for these operands). |
public motor KLN_VEC_CALL operator* (rotor a,motor b) noexcept |
Compose the action of a rotor and motor (b will be applied, then a ) |
public motor KLN_VEC_CALL operator* (motor b,rotor a) noexcept |
Compose the action of a rotor and motor (a will be applied, then b ) |
public motor KLN_VEC_CALL operator* (translator a,motor b) noexcept |
Compose the action of a translator and motor (b will be applied, then a ) |
public motor KLN_VEC_CALL operator* (motor b,translator a) noexcept |
Compose the action of a translator and motor (a will be applied, then b ) |
public motor KLN_VEC_CALL operator* (motor a,motor b) noexcept |
Compose the action of two motors (b will be applied, then a ) |
public motor KLN_VEC_CALL operator/ (plane a,plane b) noexcept |
|
public translator KLN_VEC_CALL operator/ (point a,point b) noexcept |
|
public rotor KLN_VEC_CALL operator/ (branch a,branch b) noexcept |
|
public rotor KLN_VEC_CALL operator/ (rotor a,rotor b) noexcept |
|
public translator KLN_VEC_CALL operator/ (translator a,translator b) noexcept |
|
public motor KLN_VEC_CALL operator/ (line a,line b) noexcept |
|
public motor KLN_VEC_CALL operator/ (motor a,rotor b) noexcept |
|
public motor KLN_VEC_CALL operator/ (motor a,translator b) noexcept |
|
public motor KLN_VEC_CALL operator/ (motor a,motor b) noexcept |
Members
motor KLN_VEC_CALL operator*(plane a,plane b) noexcept
Construct a motor \(m\) such that \(\sqrt{m}\) takes plane \(b\) to plane \(a\).
Example
kln::plane p1{x1, y1, z1, d1};
kln::plane p2{x2, y2, z2, d2};
kln::motor m = sqrt(p1 * p2);
plane p3 = m(p2);
// p3 will be approximately equal to p1
motor KLN_VEC_CALL operator*(plane a,point b) noexcept
motor KLN_VEC_CALL operator*(point b,plane a) noexcept
rotor KLN_VEC_CALL operator*(branch a,branch b) noexcept
Generate a rotor \(r\) such that \(\widetilde{\sqrt{r}}\) takes branch \(b\) to branch \(a\).
motor KLN_VEC_CALL operator*(line a,line b) noexcept
Generates a motor \(m\) that produces a screw motion about the common normal to lines \(a\) and \(b\). The motor given by \(\sqrt{m}\) takes \(b\) to \(a\) provided that \(a\) and \(b\) are both normalized.
translator KLN_VEC_CALL operator*(point a,point b) noexcept
Generates a translator \(t\) that produces a displacement along the line between points \(a\) and \(b\). The translator given by \(\sqrt{t}\) takes \(b\) to \(a\).
rotor KLN_VEC_CALL operator*(rotor a,rotor b) noexcept
Composes two rotational actions such that the produced rotor has the same effect as applying rotor \(b\), then rotor \(a\).
line KLN_VEC_CALL operator*(dual a,line b) noexcept
The product of a dual number and a line effectively weights the line with a rotational and translational quantity. Subsequent exponentiation will produce a motor along the screw axis of line \(b\) with rotation and translation given by half the scalar and pseudoscalar parts of the dual number \(a\) respectively.
line KLN_VEC_CALL operator*(line b,dual a) noexcept
motor KLN_VEC_CALL operator*(rotor a,translator b) noexcept
Compose the action of a translator and rotor (b
will be applied, then a
)
motor KLN_VEC_CALL operator*(translator b,rotor a) noexcept
Compose the action of a rotor and translator (a
will be applied, then b
)
translator KLN_VEC_CALL operator*(translator a,translator b) noexcept
Compose the action of two translators (this operation is commutative for these operands).
motor KLN_VEC_CALL operator*(rotor a,motor b) noexcept
Compose the action of a rotor and motor (b
will be applied, then a
)
motor KLN_VEC_CALL operator*(motor b,rotor a) noexcept
Compose the action of a rotor and motor (a
will be applied, then b
)
motor KLN_VEC_CALL operator*(translator a,motor b) noexcept
Compose the action of a translator and motor (b
will be applied, then a
)
motor KLN_VEC_CALL operator*(motor b,translator a) noexcept
Compose the action of a translator and motor (a
will be applied, then b
)
motor KLN_VEC_CALL operator*(motor a,motor b) noexcept
Compose the action of two motors (b
will be applied, then a
)