Changeset 1198 for trunk/Source/Contrib/VTK/OSGVTKMapperBase.inl
- Timestamp:
- 05/05/08 07:12:19 (2 months ago)
- Files:
-
- trunk/Source/Contrib/VTK/OSGVTKMapperBase.inl (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Contrib/VTK/OSGVTKMapperBase.inl
r1193 r1198 77 77 //! Get the value of the VTKMapper::_sfRoot field. 78 78 inline 79 Node PtrVTKMapperBase::getRoot(void) const79 Node * VTKMapperBase::getRoot(void) const 80 80 { 81 81 return _sfRoot.getValue(); … … 84 84 //! Set the value of the VTKMapper::_sfRoot field. 85 85 inline 86 void VTKMapperBase::setRoot( const NodePtrvalue)86 void VTKMapperBase::setRoot(Node * const value) 87 87 { 88 88 editSField(RootFieldMask); … … 93 93 //! Get the value of the \a index element the VTKMapper::_mfGeoRoots field. 94 94 inline 95 Node PtrVTKMapperBase::getGeoRoots(const UInt32 index) const95 Node * VTKMapperBase::getGeoRoots(const UInt32 index) const 96 96 { 97 97 return _mfGeoRoots[index]; … … 100 100 //! Get the value of the \a index element the VTKMapper::_mfGeometries field. 101 101 inline 102 Geometry PtrVTKMapperBase::getGeometries(const UInt32 index) const102 Geometry * VTKMapperBase::getGeometries(const UInt32 index) const 103 103 { 104 104 return _mfGeometries[index]; … … 107 107 //! Get the value of the \a index element the VTKMapper::_mfMaterials field. 108 108 inline 109 ChunkMaterial PtrVTKMapperBase::getMaterials(const UInt32 index) const109 ChunkMaterial * VTKMapperBase::getMaterials(const UInt32 index) const 110 110 { 111 111 return _mfMaterials[index]; … … 114 114 //! Get the value of the \a index element the VTKMapper::_mfMaterialChunks field. 115 115 inline 116 MaterialChunk PtrVTKMapperBase::getMaterialChunks(const UInt32 index) const116 MaterialChunk * VTKMapperBase::getMaterialChunks(const UInt32 index) const 117 117 { 118 118 return _mfMaterialChunks[index]; … … 121 121 //! Get the value of the \a index element the VTKMapper::_mfPositions field. 122 122 inline 123 GeoPnt3fProperty PtrVTKMapperBase::getPositions(const UInt32 index) const123 GeoPnt3fProperty * VTKMapperBase::getPositions(const UInt32 index) const 124 124 { 125 125 return _mfPositions[index]; … … 128 128 //! Get the value of the \a index element the VTKMapper::_mfLength field. 129 129 inline 130 GeoUInt32Property PtrVTKMapperBase::getLength(const UInt32 index) const130 GeoUInt32Property * VTKMapperBase::getLength(const UInt32 index) const 131 131 { 132 132 return _mfLength[index]; … … 135 135 //! Get the value of the \a index element the VTKMapper::_mfTypes field. 136 136 inline 137 GeoUInt8Property PtrVTKMapperBase::getTypes(const UInt32 index) const137 GeoUInt8Property * VTKMapperBase::getTypes(const UInt32 index) const 138 138 { 139 139 return _mfTypes[index]; … … 142 142 //! Get the value of the \a index element the VTKMapper::_mfColors field. 143 143 inline 144 GeoColor4fProperty PtrVTKMapperBase::getColors(const UInt32 index) const144 GeoColor4fProperty * VTKMapperBase::getColors(const UInt32 index) const 145 145 { 146 146 return _mfColors[index]; … … 149 149 //! Get the value of the \a index element the VTKMapper::_mfNormals field. 150 150 inline 151 GeoVec3fProperty PtrVTKMapperBase::getNormals(const UInt32 index) const151 GeoVec3fProperty * VTKMapperBase::getNormals(const UInt32 index) const 152 152 { 153 153 return _mfNormals[index];
