// Created on: 1993-03-10 // Created by: JCV // Copyright (c) 1993-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include typedef Geom_CartesianPoint CartesianPoint; typedef gp_Ax1 Ax1; typedef gp_Ax2 Ax2; typedef gp_Vec Vec; typedef gp_Trsf Trsf; //======================================================================= //function : Geom_CartesianPoint //purpose : //======================================================================= Geom_CartesianPoint::Geom_CartesianPoint (const gp_Pnt& P) : gpPnt(P) { } //======================================================================= //function : Geom_CartesianPoint //purpose : //======================================================================= Geom_CartesianPoint::Geom_CartesianPoint ( const Standard_Real X, const Standard_Real Y, const Standard_Real Z) : gpPnt (X, Y ,Z) { } //======================================================================= //function : Copy //purpose : //======================================================================= Handle(Geom_Geometry) Geom_CartesianPoint::Copy() const { Handle(Geom_CartesianPoint) P; P = new CartesianPoint (gpPnt); return P; } //======================================================================= //function : SetCoord //purpose : //======================================================================= void Geom_CartesianPoint::SetCoord (const Standard_Real X, const Standard_Real Y, const Standard_Real Z) { gpPnt.SetCoord (X, Y, Z); } //======================================================================= //function : SetPnt //purpose : //======================================================================= void Geom_CartesianPoint::SetPnt (const gp_Pnt& P) { gpPnt = P; } //======================================================================= //function : SetX //purpose : //======================================================================= void Geom_CartesianPoint::SetX (const Standard_Real X) { gpPnt.SetX (X); } //======================================================================= //function : SetY //purpose : //======================================================================= void Geom_CartesianPoint::SetY (const Standard_Real Y) { gpPnt.SetY (Y); } //======================================================================= //function : SetZ //purpose : //======================================================================= void Geom_CartesianPoint::SetZ (const Standard_Real Z) { gpPnt.SetZ (Z); } //======================================================================= //function : Coord //purpose : //======================================================================= void Geom_CartesianPoint::Coord (Standard_Real& X, Standard_Real& Y, Standard_Real& Z) const { gpPnt.Coord (X, Y, Z); } //======================================================================= //function : Pnt //purpose : //======================================================================= gp_Pnt Geom_CartesianPoint::Pnt () const { return gpPnt; } //======================================================================= //function : X //purpose : //======================================================================= Standard_Real Geom_CartesianPoint::X () const { return gpPnt.X(); } //======================================================================= //function : Y //purpose : //======================================================================= Standard_Real Geom_CartesianPoint::Y () const { return gpPnt.Y(); } //======================================================================= //function : Z //purpose : //======================================================================= Standard_Real Geom_CartesianPoint::Z () const { return gpPnt.Z(); } //======================================================================= //function : Transform //purpose : //======================================================================= void Geom_CartesianPoint::Transform (const Trsf& T) { gpPnt.Transform (T); }