summaryrefslogtreecommitdiff
path: root/src/gp/gp_Elips.cxx
blob: df459b49f5b6c07ac30be127432a7a54a1d9be93 (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
26
27
28
29
30
31
32
33
34
35
//File gp_Elips.cxx JCV 06/10/90
//Modif JCV 12/12/90

#include <gp_Elips.ixx>

void gp_Elips::Mirror (const gp_Pnt& P)
{ pos.Mirror(P); }

gp_Elips gp_Elips::Mirrored (const gp_Pnt& P) const
{
  gp_Elips E = *this;
  E.pos.Mirror (P);
  return E; 
}

void gp_Elips::Mirror (const gp_Ax1& A1)
{ pos.Mirror(A1); }

gp_Elips gp_Elips::Mirrored (const gp_Ax1& A1) const
{
  gp_Elips E = *this;
  E.pos.Mirror (A1);
  return E; 
}

void gp_Elips::Mirror (const gp_Ax2& A2)
{ pos.Mirror(A2); }

gp_Elips gp_Elips::Mirrored (const gp_Ax2& A2) const
{
  gp_Elips E = *this;
  E.pos.Mirror (A2);
  return E; 
}