|
The Vish Visualization Shell 0.3
Vish
|
Geometric algebra of the physical 3D-space, by which we mean the Clifford algebara over Euclidean, three-dimensional space. More...
Classes | |
| struct | AABB |
| Simplistic class for Axis-Aligned Bounding Box. More... | |
| struct | AABB_2D |
| Axis-aligned bounding box in 2D dimensions out of 3D, allowing for projections other than XY. More... | |
| struct | AnalyticFunction |
| Abstract base class for analytical functions that are evaluated on a physical space. More... | |
| class | bivector |
| A three-dimensional Bi-Vector which is span by two vectors to define a plane. More... | |
| struct | Frustum |
| A frustum and operations on it, as described by either a set of corner points or six planes. More... | |
| struct | HessianNormalPlane |
| class | MultiVector |
A full multivector in 3D consists of ![]() | |
| class | OddMultiVector |
| The combination of a vector and a trivector yields an odd multivector, which is dual to a rotor. More... | |
| struct | Plane |
| Normal form of a plane. More... | |
| class | point |
| A point in physical 3D space. More... | |
| class | rotor |
| A rotor is the sum of scalar with a bivector. More... | |
| struct | Span |
| struct | Span< 1 > |
| A one-dimensional span, also a known as a Ray. More... | |
| struct | Span< 2 > |
| A two-dimensional span, also a known as the parametric form of a plane. More... | |
| struct | Span< 3 > |
| class | trivector |
| A Tri-Vector, or oriented volume in 3D space. More... | |
| class | vector |
| 3-dimensional vector. More... | |
| struct | Viewport |
| A helper class describing an axis-aligned rectangle. More... | |
Typedefs | |
| typedef rotor | EvenMultiVector |
| A rotor is an even multivector. | |
Functions | |
| double | computeIntersectionDistance (const Plane &P, const Ray &R) |
Compute the intersection parameter ![]() | |
| vector | dot (const bivector &a, const vector &b) |
| Inner (dot) product of a bivector and a vector. | |
| vector | dot (const trivector &a, const bivector &b) |
| xyz ( xy + yz + zx ) = xyz xy + xyz yz + xyz zx = -xzy xy - xyz zy - yxz zx = zxy xy = -zyx xy - xyz zy - yxz zx z x y | |
| vector | dot (const vector &a, const bivector &b) |
| Inner (dot) product of a vector and bivector. | |
| double | dot (const vector &a, const vector &b) |
| Euclidan Inner (dot) product of two vectors. | |
| Metric | dyadic (const vector &a, const vector &b) |
| Tensor product or dyadic product of two vectors. | |
| Ray | makeRay (const point &A, const point &B) |
| Make a ray from two points, starting from the first one. | |
| OddMultiVector | operator* (const bivector &a, const vector &b) |
| Geometric product of bivector and vector yields an odd multivector, the sum of a vector and trivector. | |
| OddMultiVector | operator* (const rotor &R, const vector &v) |
| point | operator- (const point &P, const vector &v) |
| trivector | operator^ (const bivector &a, const vector &b) |
| Compute outer product of bivector and vector. | |
| trivector | operator^ (const vector &a, const bivector &b) |
| Compute outer product of vector and bivector. | |
| bivector | operator^ (const vector &a, const vector &b) |
| Wedge product of two vectors yields a bivector. | |
Geometric algebra of the physical 3D-space, by which we mean the Clifford algebara over Euclidean, three-dimensional space.
It can reflect the properties of a flat, 3-dimensional manifold or the tangential space of a curved, 3-dimensional manifold.
A rotor is an even multivector.
A rotor is an even MultiVector.
Euclidan Inner (dot) product of two vectors.
Compute the Euclidean dot product (inner product) of two vectors.
Referenced by computeIntersectionDistance(), Eagle::PhysicalSpace::rotor::operator()(), operator*(), and Eagle::PhysicalSpace::rotor::operator*().
Tensor product or dyadic product of two vectors.
Creates a tensor of order two.
|
inline |
Geometric product of bivector and vector yields an odd multivector, the sum of a vector and trivector.
An odd multivector is dual to a rotor, an even multivector.
References dot().
|
inline |
Use its vec() member function to retrieve the vectorial part.