HerdSoftware
0.4.0
|
A rectangle in 3D space. More...
#include <Rectangle.h>
Public Member Functions | |
Rectangle () | |
Rectangle (std::array< Point, 3 > points) | |
![]() | |
Parallelogram () | |
~Parallelogram () override=default | |
Destructor. More... | |
Parallelogram (std::array< Point, 3 > points) | |
bool | Contains (Point point) const override |
Checks if the parallelogram contains the given point. More... | |
bool | operator== (const Parallelogram &rhs) const |
Comparison operator. More... | |
bool | operator!= (const Parallelogram &rhs) const |
![]() | |
Trapezium ()=default | |
virtual | ~Trapezium ()=default |
Destructor. More... | |
Trapezium (std::array< Point, 4 > points) | |
Herd::Plane | Plane () const |
Gets the plane on which the Trapezium lies. More... | |
std::array< Point, 4 > | Vertices () const |
Gets the vertices of the Trapezium. More... | |
std::optional< Point > | Intersection (const Line &line) const |
Computes the intersection point of the given line with the Trapezium. More... | |
bool | operator== (const Trapezium &rhs) const |
Comparison operator. More... | |
bool | operator!= (const Trapezium &rhs) const |
Additional Inherited Members | |
![]() | |
Herd::Plane | m_plane |
std::array< Vec3D, 3 > | m_vertices |
A rectangle in 3D space.
This class describes a rectangular region on a plane in 3D space.
|
inline |
Constructor.
Builds an unspecified rectangle.
Herd::Rectangle::Rectangle | ( | std::array< Point, 3 > | points | ) |
Constructor.
Builds the rectangular region whose three vertices are given by the three points passed as argument (the fourth is automatically deduced).
points | The points defining the rectangle. |
Herd::Exception | if the given points do not define a rectangle. |