0030058: Visualization, Select3D_SensitivePrimitiveArray - the selection is not fast...
[occt.git] / src / gce / gce_MakeRotation.cxx
1 // Created on: 1992-09-03
2 // Created by: Remi GILET
3 // Copyright (c) 1992-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <gce_MakeRotation.hxx>
19 #include <gp_Ax1.hxx>
20 #include <gp_Dir.hxx>
21 #include <gp_Lin.hxx>
22 #include <gp_Pnt.hxx>
23 #include <gp_Trsf.hxx>
24
25 //=========================================================================
26 //   Creation d une rotation 3d de gp d angle Angle par rapport a une     +
27 //   droite Line.                                                         +
28 //=========================================================================
29 gce_MakeRotation::
30   gce_MakeRotation(const gp_Lin&  Line  ,
31                    const Standard_Real     Angle ) {
32    TheRotation.SetRotation(gp_Ax1(Line.Position()),Angle);
33  }
34
35 //=========================================================================
36 //   Creation d une rotation 3d de gp d angle Angle par rapport a un      +
37 //   axe Axis.                                                            +
38 //=========================================================================
39
40 gce_MakeRotation::
41  gce_MakeRotation(const gp_Ax1&  Axis  ,
42                   const Standard_Real     Angle ) {
43    TheRotation.SetRotation(Axis,Angle);
44  }
45
46 //=========================================================================
47 //   Creation d une rotation 3d de gp d angle Angle par rapport a une     +
48 //   droite issue du point Point et de direction Direc.                   +
49 //=========================================================================
50
51 gce_MakeRotation::
52  gce_MakeRotation(const gp_Pnt&  Point ,
53                   const gp_Dir&  Direc ,
54                   const Standard_Real     Angle ) {
55    TheRotation.SetRotation(gp_Ax1(Point,Direc),Angle);
56  }
57
58 const gp_Trsf& gce_MakeRotation::Value() const
59
60   return TheRotation; 
61 }
62
63 const gp_Trsf& gce_MakeRotation::Operator() const 
64 {
65   return TheRotation;
66 }
67
68 gce_MakeRotation::operator gp_Trsf() const
69 {
70   return TheRotation;
71 }