1 /*---------------------------------------------------------------------------*\
5 * Copyright (C) 2000-2013 by the OpenSG Forum *
7 * contact: dirk@opensg.org, gerrit.voss@vossg.org, carsten_neumann@gmx.net *
9 \*---------------------------------------------------------------------------*/
10 /*---------------------------------------------------------------------------*\
13 * This library is free software; you can redistribute it and/or modify it *
14 * under the terms of the GNU Library General Public License as published *
15 * by the Free Software Foundation, version 2. *
17 * This library is distributed in the hope that it will be useful, but *
18 * WITHOUT ANY WARRANTY; without even the implied warranty of *
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
20 * Library General Public License for more details. *
22 * You should have received a copy of the GNU Library General Public *
23 * License along with this library; if not, write to the Free Software *
24 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. *
26 \*---------------------------------------------------------------------------*/
27 /*---------------------------------------------------------------------------*\
35 \*---------------------------------------------------------------------------*/
37 /*****************************************************************************\
38 *****************************************************************************
40 ** This file is automatically generated. **
42 ** Any changes made to this file WILL be lost when it is **
43 ** regenerated, which can become necessary at any time. **
45 ** Do not change this file, changes should be done in the derived **
46 ** class ComponentTransform!
48 *****************************************************************************
49 \*****************************************************************************/
55 //! access the type of the class
57 OSG::FieldContainerType &ComponentTransformBase::getClassType(void)
62 //! access the numerical type of the class
64 OSG::UInt32 ComponentTransformBase::getClassTypeId(void)
70 OSG::UInt16 ComponentTransformBase::getClassGroupId(void)
72 return _type.getGroupId();
75 /*------------------------------ get -----------------------------------*/
77 //! Get the value of the ComponentTransform::_sfCenter field.
80 Vec3f &ComponentTransformBase::editCenter(void)
82 editSField(CenterFieldMask);
84 return _sfCenter.getValue();
87 //! Get the value of the ComponentTransform::_sfCenter field.
89 const Vec3f &ComponentTransformBase::getCenter(void) const
91 return _sfCenter.getValue();
94 //! Set the value of the ComponentTransform::_sfCenter field.
96 void ComponentTransformBase::setCenter(const Vec3f &value)
98 editSField(CenterFieldMask);
100 _sfCenter.setValue(value);
102 //! Get the value of the ComponentTransform::_sfRotation field.
105 Quaternion &ComponentTransformBase::editRotation(void)
107 editSField(RotationFieldMask);
109 return _sfRotation.getValue();
112 //! Get the value of the ComponentTransform::_sfRotation field.
114 const Quaternion &ComponentTransformBase::getRotation(void) const
116 return _sfRotation.getValue();
119 //! Set the value of the ComponentTransform::_sfRotation field.
121 void ComponentTransformBase::setRotation(const Quaternion &value)
123 editSField(RotationFieldMask);
125 _sfRotation.setValue(value);
127 //! Get the value of the ComponentTransform::_sfScale field.
130 Vec3f &ComponentTransformBase::editScale(void)
132 editSField(ScaleFieldMask);
134 return _sfScale.getValue();
137 //! Get the value of the ComponentTransform::_sfScale field.
139 const Vec3f &ComponentTransformBase::getScale(void) const
141 return _sfScale.getValue();
144 //! Set the value of the ComponentTransform::_sfScale field.
146 void ComponentTransformBase::setScale(const Vec3f &value)
148 editSField(ScaleFieldMask);
150 _sfScale.setValue(value);
152 //! Get the value of the ComponentTransform::_sfScaleOrientation field.
155 Quaternion &ComponentTransformBase::editScaleOrientation(void)
157 editSField(ScaleOrientationFieldMask);
159 return _sfScaleOrientation.getValue();
162 //! Get the value of the ComponentTransform::_sfScaleOrientation field.
164 const Quaternion &ComponentTransformBase::getScaleOrientation(void) const
166 return _sfScaleOrientation.getValue();
169 //! Set the value of the ComponentTransform::_sfScaleOrientation field.
171 void ComponentTransformBase::setScaleOrientation(const Quaternion &value)
173 editSField(ScaleOrientationFieldMask);
175 _sfScaleOrientation.setValue(value);
177 //! Get the value of the ComponentTransform::_sfTranslation field.
180 Vec3f &ComponentTransformBase::editTranslation(void)
182 editSField(TranslationFieldMask);
184 return _sfTranslation.getValue();
187 //! Get the value of the ComponentTransform::_sfTranslation field.
189 const Vec3f &ComponentTransformBase::getTranslation(void) const
191 return _sfTranslation.getValue();
194 //! Set the value of the ComponentTransform::_sfTranslation field.
196 void ComponentTransformBase::setTranslation(const Vec3f &value)
198 editSField(TranslationFieldMask);
200 _sfTranslation.setValue(value);
204 #ifdef OSG_MT_CPTR_ASPECT
206 void ComponentTransformBase::execSync ( ComponentTransformBase *pFrom,
207 ConstFieldMaskArg whichField,
208 AspectOffsetStore &oOffsets,
209 ConstFieldMaskArg syncMode,
210 const UInt32 uiSyncInfo)
212 Inherited::execSync(pFrom, whichField, oOffsets, syncMode, uiSyncInfo);
214 if(FieldBits::NoField != (CenterFieldMask & whichField))
215 _sfCenter.syncWith(pFrom->_sfCenter);
217 if(FieldBits::NoField != (RotationFieldMask & whichField))
218 _sfRotation.syncWith(pFrom->_sfRotation);
220 if(FieldBits::NoField != (ScaleFieldMask & whichField))
221 _sfScale.syncWith(pFrom->_sfScale);
223 if(FieldBits::NoField != (ScaleOrientationFieldMask & whichField))
224 _sfScaleOrientation.syncWith(pFrom->_sfScaleOrientation);
226 if(FieldBits::NoField != (TranslationFieldMask & whichField))
227 _sfTranslation.syncWith(pFrom->_sfTranslation);
233 const Char8 *ComponentTransformBase::getClassname(void)
235 return "ComponentTransform";
237 OSG_GEN_CONTAINERPTR(ComponentTransform);