2015-09-02 18:07:17 +08:00
|
|
|
#ifndef _gp_XYZ_HeaderFile
|
|
|
|
#define _gp_XYZ_HeaderFile
|
|
|
|
|
2016-04-25 23:17:39 +08:00
|
|
|
#include <Standard_TypeDef.hxx>
|
|
|
|
|
2015-09-02 18:07:17 +08:00
|
|
|
class gp_XYZ
|
|
|
|
{
|
|
|
|
public:
|
2016-06-29 22:52:32 +08:00
|
|
|
gp_XYZ() {}
|
|
|
|
gp_XYZ(Standard_Real /*x*/, Standard_Real /*y*/, Standard_Real /*z*/) {}
|
2016-04-25 23:17:39 +08:00
|
|
|
Standard_Real X() const { return 0.; }
|
|
|
|
Standard_Real Y() const { return 0.; }
|
|
|
|
Standard_Real Z() const { return 0.; }
|
2015-09-02 18:07:17 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _gp_XYZ_HeaderFile
|