TDME2 1.9.121
Object3DBase_TransformedFacesIterator.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4
5#include <tdme/tdme.h>
10#include <tdme/math/Matrix4x4.h>
11#include <tdme/math/Vector3.h>
12
13using std::array;
14
20
21/**
22 * Transformed faces iterator
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27{
28private:
30 Node* node { nullptr };
31 array<Vector3, 3> vertices;
33 int32_t faceCount;
34 int32_t faceIdxTotal;
35 int32_t faceIdx;
38
39private:
40
41 /**
42 * Reset
43 */
44 void reset();
45public:
46 /**
47 * Public constructor
48 */
50
51 /**
52 * Return iterator ready to iterate
53 */
55
56 /**
57 * Has next
58 */
59 inline bool hasNext() {
60 return faceIdxTotal < faceCount;
61 }
62
63 /**
64 * Retrieve next triangle
65 * @return next 3 triangle vectors
66 */
67 const array<Vector3, 3>& next();
68
69 /**
70 * @return current node
71 */
72 inline Node* getNode() {
73 return node;
74 }
75
76};
Model node.
Definition: Node.h:31
Object3DBase_TransformedFacesIterator * iterator()
Return iterator ready to iterate.
Object 3d node specifically for rendering.
Definition: Object3DNode.h:39
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22