Horizon
point.hpp
1 #pragma once
2 
3 namespace horizon {
4 class Point3D {
5 public:
6  Point3D(double ax, double ay, double az) : x(ax), y(ay), z(az)
7  {
8  }
9  double x;
10  double y;
11  double z;
12 };
13 } // namespace horizon
Definition: point.hpp:4