fw4spl
SrcLib/core/fwDataCamp/src/fwDataCamp/TransformationMatrix3D.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #include <fwData/TransformationMatrix3D.hpp>
8 
9 #include <fwCamp/UserObject.hpp>
10 
11 fwCampImplementDataMacro((fwData)(TransformationMatrix3D))
12 {
13  builder
14  .tag("object_version", "2")
15  .tag("lib_name", "fwData")
16  .base< ::fwData::Object>()
17  .property("coefficient", &::fwData::TransformationMatrix3D::m_vCoefficients)
18  ;
19 }
Base class for each data object.
Contains the representation of the data objects used in the framework.
TMCoefArray m_vCoefficients
Matrix coefficient number (4x4). m_vCoefficients[0] to m_vCoefficients[3] is the first row of the mat...