123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- struct point_t {
- float x, y, z;
-
- point_t(const float x, const float y, const float z) : x(x), y(y), z(z) {}
-
- point_t(const float x, const float y) : point_t(x, y, NAN) {}
- };
|