OpenMPCD
Vector.hpp
Go to the documentation of this file.
1 /**
2  * @file
3  * Defines the Vector class.
4  */
5 
6 #ifndef OPENMPCD_VECTOR_HPP
7 #define OPENMPCD_VECTOR_HPP
8 
9 #include <OpenMPCD/Vector3D.hpp>
10 
11 namespace OpenMPCD
12 {
13  typedef Vector3D<FP> Vector; ///< Legacy typedef for 3D vectors with default floating-point type.
14 }
15 
16 #endif
OpenMPCD::Vector3D< FP >
Vector3D.hpp