Go to the source code of this file.
|
| namespace | Ocean |
| | The namespace covering the entire Ocean framework.
|
| |
|
| using | Ocean::Box2 = BoxT2< Scalar > |
| | Definition of the Box2 object, depending on the OCEAN_MATH_USE_SINGLE_PRECISION either with single or double precision float data type.
|
| |
| using | Ocean::BoxD2 = BoxT2< double > |
| | Instantiation of the BoxT2 template class using a double precision float data type.
|
| |
| using | Ocean::BoxF2 = BoxT2< float > |
| | Instantiation of the BoxT2 template class using a single precision float data type.
|
| |
| template<typename T > |
| using | Ocean::BoxesT2 = std::vector< BoxT2< T > > |
| | Definition of a typename alias for vectors with BoxT2 objects.
|
| |
| using | Ocean::Boxes2 = std::vector< Box2 > |
| | Definition of a vector holding Box2 objects.
|
| |