![]() |
ProtoTracer
1.0
Real-time 3D rendering and animation engine
|
Represents a plane in 3D space defined by a centroid and a normal vector. More...
#include <Plane.h>
Public Member Functions | |
Plane () | |
Default constructor. | |
Plane (Vector3D centroid, Vector3D normal) | |
Parameterized constructor. | |
String | ToString () |
Converts the Plane object to a string representation. | |
Public Attributes | |
Vector3D | Centroid |
Point on the plane, representing the centroid. | |
Vector3D | Normal |
Normal vector defining the plane's orientation. | |
Represents a plane in 3D space defined by a centroid and a normal vector.
The Plane
class provides methods for initializing and describing a plane in three-dimensional space using a point on the plane (centroid) and a normal vector.
Plane | ( | ) |
String ToString | ( | ) |
Vector3D Centroid |
Point on the plane, representing the centroid.
Definition at line 25 of file Plane.h.
Referenced by ToString().
Vector3D Normal |
Normal vector defining the plane's orientation.
Definition at line 26 of file Plane.h.
Referenced by ToString().