vrecko
virtual reality framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
SnapPoint.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace APDYNAMICART
4 {
5 
6 struct SnapPoint
7 {
8 public:
9  SnapPoint(osg::Vec3 center) : _center(center) {};
10 
11  osg::Vec3 _center;
12 };
13 
14 typedef std::vector<SnapPoint> SnapPointArray;
15 }
16