1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
-
-
-
-
-
-
- struct point_t {
- float x;
- float y;
- float z;
- float e;
-
-
-
- point_t(float const x, float const y)
- : point_t(x, y, NAN, NAN) {}
-
-
-
- point_t(float const x, float const y, float const z)
- : point_t(x, y, z, NAN) {}
-
-
-
- point_t(float const x, float const y, float const z, float const e) {
- this->x = x;
- this->y = y;
- this->z = z;
- this->e = e;
- }
- };
-
|