summaryrefslogtreecommitdiff
path: root/src/gp/gp_Circ2d.cxx
blob: f374e03581b8bacd7f4db14b2cd8b534d50430fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//File gp_Circ2d.cxx FID 30/10/90
//modif JCV 10/01/91 suite a la deuxieme revue de projet toolkit geometry

#include <gp_Circ2d.ixx>

void gp_Circ2d::Mirror (const gp_Pnt2d& P)
{ pos.Mirror(P); }

gp_Circ2d gp_Circ2d::Mirrored (const gp_Pnt2d& P) const
{
  gp_Circ2d C = *this;
  C.pos.Mirror (P);
  return C; 
}

void gp_Circ2d::Mirror (const gp_Ax2d& A)
{ pos.Mirror (A); }

gp_Circ2d gp_Circ2d::Mirrored (const gp_Ax2d& A) const
{
  gp_Circ2d C = *this;
  C.pos.Mirror (A);
  return C; 
}