KWStyle - itkFixedCenterOfRotationAffineTransform.txx
 
Matrix View
Description

1 /*=========================================================================
2
3   Program:   Insight Segmentation & Registration Toolkit
4   Module:    $RCSfile: itkFixedCenterOfRotationAffineTransform.txx.html,v $
5   Language:  C++
6   Date:      $Date: 2006/01/17 19:15:35 $
7   Version:   $Revision: 1.4 $
8
9   Copyright (c) Insight Software Consortium. All rights reserved.
10   See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
11
12      This software is distributed WITHOUT ANY WARRANTY; without even 
13      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14      PURPOSE.  See the above copyright notices for more information.
15
16 =========================================================================*/
17 DEF #ifndef _itkFixedCenterOfRotationAffineTransform_txx
18 DEF #define _itkFixedCenterOfRotationAffineTransform_txx
19
20 #include "itkNumericTraits.h"
21 #include "itkFixedCenterOfRotationAffineTransform.h"
22 #include "itkAffineTransform.h"
23 #include "vnl/algo/vnl_matrix_inverse.h"
24
25
26 namespace itk
27 {
28
29 /** Constructor with default arguments */
30 template<class TScalarType, unsigned int NDimensions>
31 FixedCenterOfRotationAffineTransform<TScalarType, NDimensions>::
32 FixedCenterOfRotationAffineTransform() :
33 IND **Superclass(OutputSpaceDimension, ParametersDimension)
34 {
35 }
36
37 template<class TScalarType, unsigned int NDimensions>
38 FixedCenterOfRotationAffineTransform<TScalarType, NDimensions>::
39 FixedCenterOfRotationAffineTransform( unsigned int outputSpaceDims,
40                                       unsigned int paramsDims ) :
41 IND **Superclass(outputSpaceDims, paramsDims)
42 {
43 }
44
45 template<class TScalarType, unsigned int NDimensions>
46 FixedCenterOfRotationAffineTransform<TScalarType, NDimensions>::
47 FixedCenterOfRotationAffineTransform( const MatrixType & matrix,
48                                       const OutputVectorType & offset ) :
49 IND **Superclass(matrix, offset)
50 {
51 }
52
53
54 /** Destructor */
55 template<class TScalarType, unsigned int NDimensions>
56 FixedCenterOfRotationAffineTransform<TScalarType, NDimensions>::
57 ~FixedCenterOfRotationAffineTransform()
58 {
59   return;
60 }
61
62 // namespace
63
64 #endif
65

Generated by KWStyle 1.0b on Tuesday January,17 at 02:14:08PM
© Kitware Inc.