My Project
complexComponents.h
Go to the documentation of this file.
1 
2 #ifndef COMPLEXCOMPONENTS_H
3 #define COMPLEXCOMPONENTS_H
4 
5 #include "basicComponents.h"
6 #include <vector>
7 
11 class EdgeLoop
12 {
13 
14 public:
15 vector<Vertice> vertices;
16 
20 bool isContained(EdgeLoop a);
21 };
22 
23 
24 class WireFrame
25 {
26 
27 public:
28 vector<Edge> edges;
29 
31 WireFrame getTransformation(double Xrot,double Yrot,double Zrot,double Xoff,double Yoff,double Zoff);
32 
33 //vector<Edge> & getEdgeList();
34 
35 };
36 
37 
38 #endif
Definition: complexComponents.h:24
vector< Vertice > vertices
Definition: complexComponents.h:15
Definition: complexComponents.h:11
bool isContained(EdgeLoop a)
vector< Edge > edges
Definition: complexComponents.h:28