template<typename T>
Polygon3 class
Template parameters | |
---|---|
T | the number type |
Contents
Utility to represent a 3D polygon
Constructors, destructors, conversion operators
-
Polygon3(const collection::
ArrayList<Vector3<T>>& verts) explicit -
Polygon3(collection::
ArrayList<Vector3<T>>&& verts) explicit
Public functions
- void Transform(const Transform3<T>& transform)
- auto GetNormal() const -> Vector3<T> noexcept
- auto GetBarycenter() const -> Vector3<T> noexcept
- void Transform(const Matrix4<T>& matrix)
Public variables
Function documentation
template<typename T>
bpf:: math:: Polygon3<T>:: Polygon3(const collection:: ArrayList<Vector3<T>>& verts) explicit
Parameters | |
---|---|
verts | the vertices to copy from |
Constructs a polygon from a set of vertices
template<typename T>
bpf:: math:: Polygon3<T>:: Polygon3(collection:: ArrayList<Vector3<T>>&& verts) explicit
Parameters | |
---|---|
verts | the vertices to move from |
Constructs a polygon from a set of vertices
template<typename T>
void bpf:: math:: Polygon3<T>:: Transform(const Transform3<T>& transform)
Parameters | |
---|---|
transform | the transform to apply |
Apply a 3D transform to each vertex sequentially
template<typename T>
Vector3<T> bpf:: math:: Polygon3<T>:: GetBarycenter() const noexcept
Returns | 3D vector |
---|
Computes the barycenter of this polygon
Variable documentation
template<typename T>
collection:: ArrayList<Vector3<T>> bpf:: math:: Polygon3<T>:: Vertices
Polygon vertices