This struct represents a point in a 3D coordinate system.
More...
#include <NumberOperations.hpp>
|
| CoordinatePoint (const T tX=0.0, const T tY=0.0, const T tZ=0.0) |
| Construct a new Coordinate Point object.
|
|
template<typename T>
struct numops::CoordinatePoint< T >
This struct represents a point in a 3D coordinate system.
- Template Parameters
-
T | - The type of the x, y, and z points. |
- Author
- clayjay3 (clayt.nosp@m.onra.nosp@m.ycowe.nosp@m.n@gm.nosp@m.ail.c.nosp@m.om)
- Date
- 2024-04-21
◆ CoordinatePoint()
Construct a new Coordinate Point object.
- Parameters
-
tX | - The X location of the point coordinate. |
tY | - The Y location of the point coordinate. |
tZ | - The Z location of the point coordinate. |
- Author
- clayjay3 (clayt.nosp@m.onra.nosp@m.ycowe.nosp@m.n@gm.nosp@m.ail.c.nosp@m.om)
- Date
- 2024-04-21
60 {
61
62 this->tX = tX;
63 this->tY = tY;
64 this->tZ = tZ;
65 }
The documentation for this struct was generated from the following file: