Recast  1
Game with custom magic
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
Point.hpp
Go to the documentation of this file.
1 #ifndef RECAST_SERVER_POINT_H
2 #define RECAST_SERVER_POINT_H
3 
9 struct Point {
10  double x;
11  double y;
12  double z;
13 
14  Point(double x, double y, double z) : x(x), y(y), z(z) {}
15 };
16 
17 
18 #endif //RECAST_SERVER_POINT_H
Point(double x, double y, double z)
Definition: Point.hpp:14
Coord y() const noexcept
Definition: Point.hpp:24
Just point.
Definition: Point.hpp:9
double y
Definition: Point.hpp:11
Coord z() const noexcept
Definition: Point.hpp:28
double x
Definition: Point.hpp:10
Coord x() const noexcept
Definition: Point.hpp:20
double z
Definition: Point.hpp:12