Changeset 1193 for trunk/Source/Contrib/VTK/OSGVTKMapperBase.h
- Timestamp:
- 05/05/08 06:39:01 (4 months ago)
- Files:
-
- trunk/Source/Contrib/VTK/OSGVTKMapperBase.h (modified) (11 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Contrib/VTK/OSGVTKMapperBase.h
r1178 r1193 162 162 /*! \{ */ 163 163 164 const SFUnrecNodePtr *getSFRoot (void) const; 165 const MFUnrecNodePtr *getMFGeoRoots (void) const; 166 const MFUnrecGeometryPtr *getMFGeometries (void) const; 167 const MFUnrecChunkMaterialPtr *getMFMaterials (void) const; 168 const MFUnrecMaterialChunkPtr *getMFMaterialChunks (void) const; 169 const MFUnrecGeoPnt3fPropertyPtr *getMFPositions (void) const; 170 const MFUnrecGeoUInt32PropertyPtr *getMFLength (void) const; 171 const MFUnrecGeoUInt8PropertyPtr *getMFTypes (void) const; 172 const MFUnrecGeoColor4fPropertyPtr *getMFColors (void) const; 173 const MFUnrecGeoVec3fPropertyPtr *getMFNormals (void) const; 164 const SFUnrecNodePtr *getSFRoot (void) const; 165 SFUnrecNodePtr *editSFRoot (void); 166 const MFUnrecNodePtr *getMFGeoRoots (void) const; 167 MFUnrecNodePtr *editMFGeoRoots (void); 168 const MFUnrecGeometryPtr *getMFGeometries (void) const; 169 MFUnrecGeometryPtr *editMFGeometries (void); 170 const MFUnrecChunkMaterialPtr *getMFMaterials (void) const; 171 MFUnrecChunkMaterialPtr *editMFMaterials (void); 172 const MFUnrecMaterialChunkPtr *getMFMaterialChunks (void) const; 173 MFUnrecMaterialChunkPtr *editMFMaterialChunks (void); 174 const MFUnrecGeoPnt3fPropertyPtr *getMFPositions (void) const; 175 MFUnrecGeoPnt3fPropertyPtr *editMFPositions (void); 176 const MFUnrecGeoUInt32PropertyPtr *getMFLength (void) const; 177 MFUnrecGeoUInt32PropertyPtr *editMFLength (void); 178 const MFUnrecGeoUInt8PropertyPtr *getMFTypes (void) const; 179 MFUnrecGeoUInt8PropertyPtr *editMFTypes (void); 180 const MFUnrecGeoColor4fPropertyPtr *getMFColors (void) const; 181 MFUnrecGeoColor4fPropertyPtr *editMFColors (void); 182 const MFUnrecGeoVec3fPropertyPtr *getMFNormals (void) const; 183 MFUnrecGeoVec3fPropertyPtr *editMFNormals (void); 174 184 175 185 … … 177 187 178 188 NodePtr getGeoRoots (const UInt32 index) const; 179 const MFUnrecNodePtr &getGeoRoots (void) const;180 189 181 190 GeometryPtr getGeometries (const UInt32 index) const; 182 const MFUnrecGeometryPtr &getGeometries (void) const;183 191 184 192 ChunkMaterialPtr getMaterials (const UInt32 index) const; 185 const MFUnrecChunkMaterialPtr &getMaterials (void) const;186 193 187 194 MaterialChunkPtr getMaterialChunks (const UInt32 index) const; 188 const MFUnrecMaterialChunkPtr &getMaterialChunks (void) const;189 195 190 196 GeoPnt3fPropertyPtr getPositions (const UInt32 index) const; 191 const MFUnrecGeoPnt3fPropertyPtr &getPositions (void) const;192 197 193 198 GeoUInt32PropertyPtr getLength (const UInt32 index) const; 194 const MFUnrecGeoUInt32PropertyPtr &getLength (void) const;195 199 196 200 GeoUInt8PropertyPtr getTypes (const UInt32 index) const; 197 const MFUnrecGeoUInt8PropertyPtr &getTypes (void) const;198 201 199 202 GeoColor4fPropertyPtr getColors (const UInt32 index) const; 200 const MFUnrecGeoColor4fPropertyPtr &getColors (void) const;201 203 202 204 GeoVec3fPropertyPtr getNormals (const UInt32 index) const; 203 const MFUnrecGeoVec3fPropertyPtr &getNormals (void) const;204 205 205 206 /*! \} */ … … 222 223 void pushToGeoRoots (const NodePtr value ); 223 224 void assignGeoRoots (const MFUnrecNodePtr &value); 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 225 void removeFromGeoRoots (UInt32 uiIndex ); 231 226 void removeFromGeoRoots(const NodePtr value ); … … 233 228 234 229 235 236 230 void pushToGeometries (const GeometryPtr value ); 237 231 void assignGeometries (const MFUnrecGeometryPtr &value); 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 232 void removeFromGeometries (UInt32 uiIndex ); 245 233 void removeFromGeometries(const GeometryPtr value ); … … 247 235 248 236 249 250 237 void pushToMaterials (const ChunkMaterialPtr value ); 251 238 void assignMaterials (const MFUnrecChunkMaterialPtr &value); 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 239 void removeFromMaterials (UInt32 uiIndex ); 259 240 void removeFromMaterials(const ChunkMaterialPtr value ); … … 261 242 262 243 263 264 244 void pushToMaterialChunks (const MaterialChunkPtr value ); 265 245 void assignMaterialChunks (const MFUnrecMaterialChunkPtr &value); 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 246 void removeFromMaterialChunks (UInt32 uiIndex ); 273 247 void removeFromMaterialChunks(const MaterialChunkPtr value ); … … 275 249 276 250 277 278 251 void pushToPositions (const GeoPnt3fPropertyPtr value ); 279 252 void assignPositions (const MFUnrecGeoPnt3fPropertyPtr &value); 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 253 void removeFromPositions (UInt32 uiIndex ); 287 254 void removeFromPositions(const GeoPnt3fPropertyPtr value ); … … 289 256 290 257 291 292 258 void pushToLength (const GeoUInt32PropertyPtr value ); 293 259 void assignLength (const MFUnrecGeoUInt32PropertyPtr &value); 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 260 void removeFromLength (UInt32 uiIndex ); 301 261 void removeFromLength(const GeoUInt32PropertyPtr value ); … … 303 263 304 264 305 306 265 void pushToTypes (const GeoUInt8PropertyPtr value ); 307 266 void assignTypes (const MFUnrecGeoUInt8PropertyPtr &value); 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 267 void removeFromTypes (UInt32 uiIndex ); 315 268 void removeFromTypes(const GeoUInt8PropertyPtr value ); … … 317 270 318 271 319 320 272 void pushToColors (const GeoColor4fPropertyPtr value ); 321 273 void assignColors (const MFUnrecGeoColor4fPropertyPtr &value); 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 274 void removeFromColors (UInt32 uiIndex ); 329 275 void removeFromColors(const GeoColor4fPropertyPtr value ); … … 331 277 332 278 333 334 279 void pushToNormals (const GeoVec3fPropertyPtr value ); 335 280 void assignNormals (const MFUnrecGeoVec3fPropertyPtr &value); 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 281 void removeFromNormals (UInt32 uiIndex ); 343 282 void removeFromNormals(const GeoVec3fPropertyPtr value );
