Changeset 1041 for branches/Carsten_PtrWork2/Source/System/NodeCores/Drawables/Geometry/Base/WS/OSGGeometryBase.inl
- Timestamp:
- 01/24/08 15:11:54 (10 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/NodeCores/Drawables/Geometry/Base/WS/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 } … … 315 323 GeometryBase::editMFProperties(void) 316 324 { 325 editMField(PropertiesFieldMask, _mfProperties); 326 317 327 return &_mfProperties; 318 328 } … … 327 337 GeometryBase::editProperties(void) 328 338 { 339 editMField(PropertiesFieldMask, _mfProperties); 340 329 341 return _mfProperties; 330 342 } … … 339 351 GeometryBase::editProperties(UInt32 const index) 340 352 { 353 editMField(PropertiesFieldMask, _mfProperties); 354 341 355 return _mfProperties[index]; 342 356 } … … 354 368 GeometryBase::editMFPropIndices(void) 355 369 { 370 editMField(PropIndicesFieldMask, _mfPropIndices); 371 356 372 return &_mfPropIndices; 357 373 } … … 366 382 GeometryBase::editPropIndices(void) 367 383 { 384 editMField(PropIndicesFieldMask, _mfPropIndices); 385 368 386 return _mfPropIndices; 369 387 } … … 378 396 GeometryBase::editPropIndices(UInt32 const index) 379 397 { 398 editMField(PropIndicesFieldMask, _mfPropIndices); 399 380 400 return _mfPropIndices[index]; 381 401 }
