Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
BoundTemperatureWorld.inc.hpp
Go to the documentation of this file.
1 //
2 // Created by Oleg Morozenkov on 15.06.17.
3 //
4 
5 #ifndef RECAST_SYNCHRONIZEDVECTORBOUNDTEMPERATUREWORLD_INC_H
6 #define RECAST_SYNCHRONIZEDVECTORBOUNDTEMPERATUREWORLD_INC_H
7 
8 
10 
11 inline void swap(BoundTemperatureWorld& first, BoundTemperatureWorld& second) {
12  std::swap(first._bounds, second._bounds);
13  std::swap(first._data, second._data);
14 }
15 
16 
17 #endif //RECAST_SYNCHRONIZEDVECTORBOUNDTEMPERATUREWORLD_INC_H
Parallelepiped _bounds
Definition: BoundTemperatureWorld.hpp:45
void swap(BoundTemperatureWorld &first, BoundTemperatureWorld &second)
Definition: BoundTemperatureWorld.inc.hpp:11
std::vector< Temperature > _data
Definition: BoundTemperatureWorld.hpp:46
Definition: BoundTemperatureWorld.hpp:15