blob: 356546d917fe595277b27142768dbe2824e2eae8 (
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
|
// File: gce_MakeRotation2d.cxx
// Created: Thu Sep 3 17:18:54 1992
// Author: Remi GILET
// <reg@sdsun1>
#include <gce_MakeRotation2d.ixx>
//=========================================================================
// Creation d une rotation 2d de gp d angle Angle par rapport a un +
// point Point. +
//=========================================================================
gce_MakeRotation2d::
gce_MakeRotation2d(const gp_Pnt2d& Point ,
const Standard_Real Angle ) {
TheRotation2d.SetRotation(Point,Angle);
}
const gp_Trsf2d& gce_MakeRotation2d::Value() const
{
return TheRotation2d;
}
const gp_Trsf2d& gce_MakeRotation2d::Operator() const
{
return TheRotation2d;
}
gce_MakeRotation2d::operator gp_Trsf2d() const
{
return TheRotation2d;
}
|