1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-26 11:05:31 +03:00
occt/src/gp/gp_Circ.cxx
2012-03-05 19:23:40 +04:00

35 lines
569 B
C++
Executable File

//File gp_Circ.cxx JCV 06/10/90
#include <gp_Circ.ixx>
void gp_Circ::Mirror (const gp_Pnt& P)
{ pos.Mirror(P); }
gp_Circ gp_Circ::Mirrored (const gp_Pnt& P) const
{
gp_Circ C = *this;
C.pos.Mirror (P);
return C;
}
void gp_Circ::Mirror (const gp_Ax1& A1)
{ pos.Mirror(A1); }
gp_Circ gp_Circ::Mirrored (const gp_Ax1& A1) const
{
gp_Circ C = *this;
C.pos.Mirror (A1);
return C;
}
void gp_Circ::Mirror (const gp_Ax2& A2)
{ pos.Mirror(A2); }
gp_Circ gp_Circ::Mirrored (const gp_Ax2& A2) const
{
gp_Circ C = *this;
C.pos.Mirror (A2);
return C;
}