Changeset 1041 for branches/Carsten_PtrWork2/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.inl
- Timestamp:
- 01/24/08 15:11:54 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/NodeCores/Drawables/Geometry/Base/ES/OSGGeometryBase.inl
r1017 r1041 79 79 GeometryBase::editSFTypes(void) 80 80 { 81 editSField(TypesFieldMask); 82 81 83 return &_sfTypes; 82 84 } … … 91 93 GeometryBase::editTypes(void) 92 94 { 95 editSField(TypesFieldMask); 96 93 97 return _sfTypes.editValue(); 94 98 } … … 114 118 GeometryBase::editSFLengths(void) 115 119 { 120 editSField(LengthsFieldMask); 121 116 122 return &_sfLengths; 117 123 } … … 126 132 GeometryBase::editLengths(void) 127 133 { 134 editSField(LengthsFieldMask); 135 128 136 return _sfLengths.editValue(); 129 137 } … … 260 268 GeometryBase::editMFProperties(void) 261 269 { 270 editMField(PropertiesFieldMask, _mfProperties); 271 262 272 return &_mfProperties; 263 273 } … … 272 282 GeometryBase::editProperties(void) 273 283 { 284 editMField(PropertiesFieldMask, _mfProperties); 285 274 286 return _mfProperties; 275 287 } … … 284 296 GeometryBase::editProperties(UInt32 const index) 285 297 { 298 editMField(PropertiesFieldMask, _mfProperties); 299 286 300 return _mfProperties[index]; 287 301 } … … 299 313 GeometryBase::editMFPropIndices(void) 300 314 { 315 editMField(PropIndicesFieldMask, _mfPropIndices); 316 301 317 return &_mfPropIndices; 302 318 } … … 311 327 GeometryBase::editPropIndices(void) 312 328 { 329 editMField(PropIndicesFieldMask, _mfPropIndices); 330 313 331 return _mfPropIndices; 314 332 } … … 323 341 GeometryBase::editPropIndices(UInt32 const index) 324 342 { 343 editMField(PropIndicesFieldMask, _mfPropIndices); 344 325 345 return _mfPropIndices[index]; 326 346 }
