Pathfinder
GraphVertex.h
Go to the documentation of this file.
1 
10 #ifndef GRAPHVERTEX_H
11 #define GRAPHVERTEX_H
12 
13 #include "MeshAccessor.h"
14 
15 namespace Pathfinder{
16 
21  struct GraphVertex {
22 
26  Geometry::Vec3 pos;
27 
28 
34 
35  };
36 
37 }
38 
39 #endif
This file declares the struct MeshAccessor that presents a convenient way to access meshes...
MeshAccessor * ma
A pointer to the MeshAccessor object that manages the mesh from where this vertex originates...
Definition: GraphVertex.h:33
Definition: AABB.cpp:21
This class is used to simplify the accessing of meshes, their vertices and polygons.
Definition: MeshAccessor.h:29
Geometry::Vec3 pos
The position of this vertex in three-dimensional space.
Definition: GraphVertex.h:26
This struct declares all infroamtion that shall be stored for each vertex of a graph.
Definition: GraphVertex.h:21