changed: gcc8 base update
[opensg.git] / Source / System / Window / Base / OSGMatrixCameraBase.inl
blob43ed43e7345d5c70d35013333f44032088374540
1 /*---------------------------------------------------------------------------*\
2  *                                OpenSG                                     *
3  *                                                                           *
4  *                                                                           *
5  *               Copyright (C) 2000-2013 by the OpenSG Forum                 *
6  *                                                                           *
7  * contact: dirk@opensg.org, gerrit.voss@vossg.org, carsten_neumann@gmx.net  *
8  *                                                                           *
9 \*---------------------------------------------------------------------------*/
10 /*---------------------------------------------------------------------------*\
11  *                                License                                    *
12  *                                                                           *
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.                               *
16  *                                                                           *
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.                          *
21  *                                                                           *
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.                 *
25  *                                                                           *
26 \*---------------------------------------------------------------------------*/
27 /*---------------------------------------------------------------------------*\
28  *                                Changes                                    *
29  *                                                                           *
30  *                                                                           *
31  *                                                                           *
32  *                                                                           *
33  *                                                                           *
34  *                                                                           *
35 \*---------------------------------------------------------------------------*/
37 /*****************************************************************************\
38  *****************************************************************************
39  **                                                                         **
40  **                  This file is automatically generated.                  **
41  **                                                                         **
42  **          Any changes made to this file WILL be lost when it is          **
43  **           regenerated, which can become necessary at any time.          **
44  **                                                                         **
45  **     Do not change this file, changes should be done in the derived      **
46  **     class MatrixCamera!
47  **                                                                         **
48  *****************************************************************************
49 \*****************************************************************************/
51 OSG_BEGIN_NAMESPACE
55 //! access the type of the class
56 inline
57 OSG::FieldContainerType &MatrixCameraBase::getClassType(void)
59     return _type;
62 //! access the numerical type of the class
63 inline
64 OSG::UInt32 MatrixCameraBase::getClassTypeId(void)
66     return _type.getId();
69 inline
70 OSG::UInt16 MatrixCameraBase::getClassGroupId(void)
72     return _type.getGroupId();
75 /*------------------------------ get -----------------------------------*/
77 //! Get the value of the MatrixCamera::_sfProjectionMatrix field.
79 inline
80 Matrix &MatrixCameraBase::editProjectionMatrix(void)
82     editSField(ProjectionMatrixFieldMask);
84     return _sfProjectionMatrix.getValue();
87 //! Get the value of the MatrixCamera::_sfProjectionMatrix field.
88 inline
89 const Matrix &MatrixCameraBase::getProjectionMatrix(void) const
91     return _sfProjectionMatrix.getValue();
94 //! Set the value of the MatrixCamera::_sfProjectionMatrix field.
95 inline
96 void MatrixCameraBase::setProjectionMatrix(const Matrix &value)
98     editSField(ProjectionMatrixFieldMask);
100     _sfProjectionMatrix.setValue(value);
102 //! Get the value of the MatrixCamera::_sfModelviewMatrix field.
104 inline
105 Matrix &MatrixCameraBase::editModelviewMatrix(void)
107     editSField(ModelviewMatrixFieldMask);
109     return _sfModelviewMatrix.getValue();
112 //! Get the value of the MatrixCamera::_sfModelviewMatrix field.
113 inline
114 const Matrix &MatrixCameraBase::getModelviewMatrix(void) const
116     return _sfModelviewMatrix.getValue();
119 //! Set the value of the MatrixCamera::_sfModelviewMatrix field.
120 inline
121 void MatrixCameraBase::setModelviewMatrix(const Matrix &value)
123     editSField(ModelviewMatrixFieldMask);
125     _sfModelviewMatrix.setValue(value);
127 //! Get the value of the MatrixCamera::_sfUseBeacon field.
129 inline
130 bool &MatrixCameraBase::editUseBeacon(void)
132     editSField(UseBeaconFieldMask);
134     return _sfUseBeacon.getValue();
137 //! Get the value of the MatrixCamera::_sfUseBeacon field.
138 inline
139       bool  MatrixCameraBase::getUseBeacon(void) const
141     return _sfUseBeacon.getValue();
144 //! Set the value of the MatrixCamera::_sfUseBeacon field.
145 inline
146 void MatrixCameraBase::setUseBeacon(const bool value)
148     editSField(UseBeaconFieldMask);
150     _sfUseBeacon.setValue(value);
154 #ifdef OSG_MT_CPTR_ASPECT
155 inline
156 void MatrixCameraBase::execSync (      MatrixCameraBase *pFrom,
157                                         ConstFieldMaskArg  whichField,
158                                         AspectOffsetStore &oOffsets,
159                                         ConstFieldMaskArg  syncMode,
160                                   const UInt32             uiSyncInfo)
162     Inherited::execSync(pFrom, whichField, oOffsets, syncMode, uiSyncInfo);
164     if(FieldBits::NoField != (ProjectionMatrixFieldMask & whichField))
165         _sfProjectionMatrix.syncWith(pFrom->_sfProjectionMatrix);
167     if(FieldBits::NoField != (ModelviewMatrixFieldMask & whichField))
168         _sfModelviewMatrix.syncWith(pFrom->_sfModelviewMatrix);
170     if(FieldBits::NoField != (UseBeaconFieldMask & whichField))
171         _sfUseBeacon.syncWith(pFrom->_sfUseBeacon);
173 #endif
176 inline
177 const Char8 *MatrixCameraBase::getClassname(void)
179     return "MatrixCamera";
181 OSG_GEN_CONTAINERPTR(MatrixCamera);
183 OSG_END_NAMESPACE