Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #pragma once
00029 #ifndef OBJTREE_BOX_H
00030 #define OBJTREE_BOX_H
00031
00032 namespace objtree
00033 {
00034
00039 struct Box
00040 {
00041 float x, y, z;
00042 float w, h, d;
00043
00044 inline Box()
00045 {
00046 }
00047
00048 inline Box(float x, float y, float z, float w, float h, float d)
00049 {
00050 init(x, y, z, w, h, d);
00051 }
00052
00053 inline void init(float x, float y, float z, float w, float h, float d)
00054 {
00055 this->x = x;
00056 this->y = y;
00057 this->z = z;
00058 this->w = w;
00059 this->h = h;
00060 this->d = d;
00061 }
00062
00063 bool operator==(const Box &box)
00064 {
00065 return box.x == x && box.y == y && box.z == z && box.w == w && box.h == h && box.d == d;
00066 }
00067 };
00068
00069 }
00070
00071 #endif // OBJTREE_BOX_H
srs_env_model
Author(s): Vit Stancl (stancl@fit.vutbr.cz), Tomas Lokaj, Jan Gorig, Michal Spanel (spanel@fit.vutbr.cz)
autogenerated on Mon Oct 6 2014 08:05:04