xc
Rotation3d.h
1 // -*-c++-*-
2 //----------------------------------------------------------------------------
3 // xc utils library; general purpose classes and functions.
4 //
5 // Copyright (C) Luis C. Pérez Tato
6 //
7 // XC utils is free software: you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation, either version 3 of the License, or
10 // (at your option) any later version.
11 //
12 // This software is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program.
19 // If not, see <http://www.gnu.org/licenses/>.
20 //----------------------------------------------------------------------------
21 //Rotation3d.h
22 //Rotation in a three-dimensional space.
23 
24 #ifndef ROTATION3D_H
25 #define ROTATION3D_H
26 
27 #include "Trf3d.h"
28 
29 class Line3d;
30 
31 
33 //
35 class Rotation3d: public Trf3d
36  {
37  public:
38  Rotation3d(void);
39  Rotation3d(const Line3d &,const GEOM_FT &);
40  };
41 
42 #endif
Rotación en tres dimensiones.
Definition: Rotation3d.h:35
Rotation3d(void)
Default constructor.
Definition: Rotation3d.cc:50
Line in a three-dimensional space.
Definition: Line3d.h:62
Three-dimensional transformation.
Definition: Trf3d.h:39