Changeset 1178 for trunk/Source/Contrib/VTK/OSGVTKMapperBase.h
- Timestamp:
- 04/18/08 04:10:31 (8 months ago)
- Files:
-
- trunk/Source/Contrib/VTK/OSGVTKMapperBase.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Contrib/VTK/OSGVTKMapperBase.h
r1171 r1178 174 174 175 175 176 NodePtr ConstgetRoot (void) const;177 178 NodePtr ConstgetGeoRoots (const UInt32 index) const;176 NodePtr getRoot (void) const; 177 178 NodePtr getGeoRoots (const UInt32 index) const; 179 179 const MFUnrecNodePtr &getGeoRoots (void) const; 180 180 181 GeometryPtr ConstgetGeometries (const UInt32 index) const;181 GeometryPtr getGeometries (const UInt32 index) const; 182 182 const MFUnrecGeometryPtr &getGeometries (void) const; 183 183 184 ChunkMaterialPtr ConstgetMaterials (const UInt32 index) const;184 ChunkMaterialPtr getMaterials (const UInt32 index) const; 185 185 const MFUnrecChunkMaterialPtr &getMaterials (void) const; 186 186 187 MaterialChunkPtr ConstgetMaterialChunks (const UInt32 index) const;187 MaterialChunkPtr getMaterialChunks (const UInt32 index) const; 188 188 const MFUnrecMaterialChunkPtr &getMaterialChunks (void) const; 189 189 190 GeoPnt3fPropertyPtr ConstgetPositions (const UInt32 index) const;190 GeoPnt3fPropertyPtr getPositions (const UInt32 index) const; 191 191 const MFUnrecGeoPnt3fPropertyPtr &getPositions (void) const; 192 192 193 GeoUInt32PropertyPtr ConstgetLength (const UInt32 index) const;193 GeoUInt32PropertyPtr getLength (const UInt32 index) const; 194 194 const MFUnrecGeoUInt32PropertyPtr &getLength (void) const; 195 195 196 GeoUInt8PropertyPtr ConstgetTypes (const UInt32 index) const;196 GeoUInt8PropertyPtr getTypes (const UInt32 index) const; 197 197 const MFUnrecGeoUInt8PropertyPtr &getTypes (void) const; 198 198 199 GeoColor4fPropertyPtr ConstgetColors (const UInt32 index) const;199 GeoColor4fPropertyPtr getColors (const UInt32 index) const; 200 200 const MFUnrecGeoColor4fPropertyPtr &getColors (void) const; 201 201 202 GeoVec3fPropertyPtr ConstgetNormals (const UInt32 index) const;202 GeoVec3fPropertyPtr getNormals (const UInt32 index) const; 203 203 const MFUnrecGeoVec3fPropertyPtr &getNormals (void) const; 204 204 … … 208 208 /*! \{ */ 209 209 210 void setRoot ( NodePtrConstArgvalue);210 void setRoot (const NodePtr value); 211 211 212 212 /*! \} */ … … 220 220 /*! \{ */ 221 221 222 void pushToGeoRoots ( NodePtrConstArgvalue );222 void pushToGeoRoots (const NodePtr value ); 223 223 void assignGeoRoots (const MFUnrecNodePtr &value); 224 void insertIntoGeoRoots ( UInt32uiIndex,225 NodePtrConstArgvalue );226 void replaceInGeoRoots ( UInt32uiIndex,227 NodePtrConstArgvalue );228 void replaceInGeoRoots ( NodePtrConstArgpOldElem,229 NodePtrConstArgpNewElem);224 void insertIntoGeoRoots ( UInt32 uiIndex, 225 const NodePtr value ); 226 void replaceInGeoRoots ( UInt32 uiIndex, 227 const NodePtr value ); 228 void replaceInGeoRoots (const NodePtr pOldElem, 229 const NodePtr pNewElem); 230 230 void removeFromGeoRoots (UInt32 uiIndex ); 231 void removeFromGeoRoots( NodePtrConstArgvalue );231 void removeFromGeoRoots(const NodePtr value ); 232 232 void clearGeoRoots (void ); 233 233 234 234 235 235 236 void pushToGeometries ( GeometryPtrConstArgvalue );236 void pushToGeometries (const GeometryPtr value ); 237 237 void assignGeometries (const MFUnrecGeometryPtr &value); 238 void insertIntoGeometries ( UInt32uiIndex,239 GeometryPtrConstArgvalue );240 void replaceInGeometries ( UInt32uiIndex,241 GeometryPtrConstArgvalue );242 void replaceInGeometries ( GeometryPtrConstArgpOldElem,243 GeometryPtrConstArgpNewElem);238 void insertIntoGeometries ( UInt32 uiIndex, 239 const GeometryPtr value ); 240 void replaceInGeometries ( UInt32 uiIndex, 241 const GeometryPtr value ); 242 void replaceInGeometries (const GeometryPtr pOldElem, 243 const GeometryPtr pNewElem); 244 244 void removeFromGeometries (UInt32 uiIndex ); 245 void removeFromGeometries( GeometryPtrConstArgvalue );245 void removeFromGeometries(const GeometryPtr value ); 246 246 void clearGeometries (void ); 247 247 248 248 249 249 250 void pushToMaterials ( ChunkMaterialPtrConstArgvalue );250 void pushToMaterials (const ChunkMaterialPtr value ); 251 251 void assignMaterials (const MFUnrecChunkMaterialPtr &value); 252 void insertIntoMaterials ( UInt32uiIndex,253 ChunkMaterialPtrConstArgvalue );254 void replaceInMaterials ( UInt32uiIndex,255 ChunkMaterialPtrConstArgvalue );256 void replaceInMaterials ( ChunkMaterialPtrConstArgpOldElem,257 ChunkMaterialPtrConstArgpNewElem);252 void insertIntoMaterials ( UInt32 uiIndex, 253 const ChunkMaterialPtr value ); 254 void replaceInMaterials ( UInt32 uiIndex, 255 const ChunkMaterialPtr value ); 256 void replaceInMaterials (const ChunkMaterialPtr pOldElem, 257 const ChunkMaterialPtr pNewElem); 258 258 void removeFromMaterials (UInt32 uiIndex ); 259 void removeFromMaterials( ChunkMaterialPtrConstArgvalue );259 void removeFromMaterials(const ChunkMaterialPtr value ); 260 260 void clearMaterials (void ); 261 261 262 262 263 263 264 void pushToMaterialChunks ( MaterialChunkPtrConstArgvalue );264 void pushToMaterialChunks (const MaterialChunkPtr value ); 265 265 void assignMaterialChunks (const MFUnrecMaterialChunkPtr &value); 266 void insertIntoMaterialChunks ( UInt32uiIndex,267 MaterialChunkPtrConstArgvalue );268 void replaceInMaterialChunks ( UInt32uiIndex,269 MaterialChunkPtrConstArgvalue );270 void replaceInMaterialChunks ( MaterialChunkPtrConstArgpOldElem,271 MaterialChunkPtrConstArgpNewElem);266 void insertIntoMaterialChunks ( UInt32 uiIndex, 267 const MaterialChunkPtr value ); 268 void replaceInMaterialChunks ( UInt32 uiIndex, 269 const MaterialChunkPtr value ); 270 void replaceInMaterialChunks (const MaterialChunkPtr pOldElem, 271 const MaterialChunkPtr pNewElem); 272 272 void removeFromMaterialChunks (UInt32 uiIndex ); 273 void removeFromMaterialChunks( MaterialChunkPtrConstArgvalue );273 void removeFromMaterialChunks(const MaterialChunkPtr value ); 274 274 void clearMaterialChunks (void ); 275 275 276 276 277 277 278 void pushToPositions ( GeoPnt3fPropertyPtrConstArgvalue );278 void pushToPositions (const GeoPnt3fPropertyPtr value ); 279 279 void assignPositions (const MFUnrecGeoPnt3fPropertyPtr &value); 280 void insertIntoPositions ( UInt32uiIndex,281 GeoPnt3fPropertyPtrConstArgvalue );282 void replaceInPositions ( UInt32uiIndex,283 GeoPnt3fPropertyPtrConstArgvalue );284 void replaceInPositions ( GeoPnt3fPropertyPtrConstArgpOldElem,285 GeoPnt3fPropertyPtrConstArgpNewElem);280 void insertIntoPositions ( UInt32 uiIndex, 281 const GeoPnt3fPropertyPtr value ); 282 void replaceInPositions ( UInt32 uiIndex, 283 const GeoPnt3fPropertyPtr value ); 284 void replaceInPositions (const GeoPnt3fPropertyPtr pOldElem, 285 const GeoPnt3fPropertyPtr pNewElem); 286 286 void removeFromPositions (UInt32 uiIndex ); 287 void removeFromPositions( GeoPnt3fPropertyPtrConstArgvalue );287 void removeFromPositions(const GeoPnt3fPropertyPtr value ); 288 288 void clearPositions (void ); 289 289 290 290 291 291 292 void pushToLength ( GeoUInt32PropertyPtrConstArgvalue );292 void pushToLength (const GeoUInt32PropertyPtr value ); 293 293 void assignLength (const MFUnrecGeoUInt32PropertyPtr &value); 294 void insertIntoLength ( UInt32uiIndex,295 GeoUInt32PropertyPtrConstArgvalue );296 void replaceInLength ( UInt32uiIndex,297 GeoUInt32PropertyPtrConstArgvalue );298 void replaceInLength ( GeoUInt32PropertyPtrConstArgpOldElem,299 GeoUInt32PropertyPtrConstArgpNewElem);294 void insertIntoLength ( UInt32 uiIndex, 295 const GeoUInt32PropertyPtr value ); 296 void replaceInLength ( UInt32 uiIndex, 297 const GeoUInt32PropertyPtr value ); 298 void replaceInLength (const GeoUInt32PropertyPtr pOldElem, 299 const GeoUInt32PropertyPtr pNewElem); 300 300 void removeFromLength (UInt32 uiIndex ); 301 void removeFromLength( GeoUInt32PropertyPtrConstArgvalue );301 void removeFromLength(const GeoUInt32PropertyPtr value ); 302 302 void clearLength (void ); 303 303 304 304 305 305 306 void pushToTypes ( GeoUInt8PropertyPtrConstArgvalue );306 void pushToTypes (const GeoUInt8PropertyPtr value ); 307 307 void assignTypes (const MFUnrecGeoUInt8PropertyPtr &value); 308 void insertIntoTypes ( UInt32uiIndex,309 GeoUInt8PropertyPtrConstArgvalue );310 void replaceInTypes ( UInt32uiIndex,311 GeoUInt8PropertyPtrConstArgvalue );312 void replaceInTypes ( GeoUInt8PropertyPtrConstArgpOldElem,313 GeoUInt8PropertyPtrConstArgpNewElem);308 void insertIntoTypes ( UInt32 uiIndex, 309 const GeoUInt8PropertyPtr value ); 310 void replaceInTypes ( UInt32 uiIndex, 311 const GeoUInt8PropertyPtr value ); 312 void replaceInTypes (const GeoUInt8PropertyPtr pOldElem, 313 const GeoUInt8PropertyPtr pNewElem); 314 314 void removeFromTypes (UInt32 uiIndex ); 315 void removeFromTypes( GeoUInt8PropertyPtrConstArgvalue );315 void removeFromTypes(const GeoUInt8PropertyPtr value ); 316 316 void clearTypes (void ); 317 317 318 318 319 319 320 void pushToColors ( GeoColor4fPropertyPtrConstArgvalue );320 void pushToColors (const GeoColor4fPropertyPtr value ); 321 321 void assignColors (const MFUnrecGeoColor4fPropertyPtr &value); 322 void insertIntoColors ( UInt32uiIndex,323 GeoColor4fPropertyPtrConstArgvalue );324 void replaceInColors ( UInt32uiIndex,325 GeoColor4fPropertyPtrConstArgvalue );326 void replaceInColors ( GeoColor4fPropertyPtrConstArgpOldElem,327 GeoColor4fPropertyPtrConstArgpNewElem);322 void insertIntoColors ( UInt32 uiIndex, 323 const GeoColor4fPropertyPtr value ); 324 void replaceInColors ( UInt32 uiIndex, 325 const GeoColor4fPropertyPtr value ); 326 void replaceInColors (const GeoColor4fPropertyPtr pOldElem, 327 const GeoColor4fPropertyPtr pNewElem); 328 328 void removeFromColors (UInt32 uiIndex ); 329 void removeFromColors( GeoColor4fPropertyPtrConstArgvalue );329 void removeFromColors(const GeoColor4fPropertyPtr value ); 330 330 void clearColors (void ); 331 331 332 332 333 333 334 void pushToNormals ( GeoVec3fPropertyPtrConstArgvalue );334 void pushToNormals (const GeoVec3fPropertyPtr value ); 335 335 void assignNormals (const MFUnrecGeoVec3fPropertyPtr &value); 336 void insertIntoNormals ( UInt32uiIndex,337 GeoVec3fPropertyPtrConstArgvalue );338 void replaceInNormals ( UInt32uiIndex,339 GeoVec3fPropertyPtrConstArgvalue );340 void replaceInNormals ( GeoVec3fPropertyPtrConstArgpOldElem,341 GeoVec3fPropertyPtrConstArgpNewElem);336 void insertIntoNormals ( UInt32 uiIndex, 337 const GeoVec3fPropertyPtr value ); 338 void replaceInNormals ( UInt32 uiIndex, 339 const GeoVec3fPropertyPtr value ); 340 void replaceInNormals (const GeoVec3fPropertyPtr pOldElem, 341 const GeoVec3fPropertyPtr pNewElem); 342 342 void removeFromNormals (UInt32 uiIndex ); 343 void removeFromNormals( GeoVec3fPropertyPtrConstArgvalue );343 void removeFromNormals(const GeoVec3fPropertyPtr value ); 344 344 void clearNormals (void ); 345 345
