fw4spl
amp/src/fwDataCamp/Plane.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/Plane.hpp>
8 
9 #include <fwCamp/UserObject.hpp>
10 
11 fwCampImplementDataMacro((fwData)(Plane))
12 {
13  builder
14  .tag("object_version", "1")
15  .tag("lib_name", "fwData")
16  .base< ::fwData::Object>()
17  .property("points", &::fwData::Plane::m_vPoints)
18  .property("intersection", &::fwData::Plane::m_isIntersection)
19  ;
20 }
PointContainer m_vPoints
Points container.
Definition: Plane.hpp:83
bool m_isIntersection
flag if the plane is an intersection (else an union)
Definition: Plane.hpp:86
Base class for each data object.
Contains the representation of the data objects used in the framework.