8#ifndef FELIX_POINT_3D_H
9#define FELIX_POINT_3D_H
17 Point3D(
double _x = 0,
double _y = 0,
double _z = 0);
22 void Translate(
double a,
double b,
double c);
void Translate(double a, double b, double c)
Definition Point3D.cpp:27
Point3D(double _x=0, double _y=0, double _z=0)
Definition Point3D.cpp:12
double z
z coordinates
Definition Point3D.h:15
void Print()
Definition Point3D.cpp:22
double y
y coordinates
Definition Point3D.h:14
double x
x coordinates
Definition Point3D.h:13