Changeset 1178 for trunk/Source/Contrib/VTK/OSGVTKMapperBase.cpp
- Timestamp:
- 04/18/08 04:10:31 (8 months ago)
- Files:
-
- trunk/Source/Contrib/VTK/OSGVTKMapperBase.cpp (modified) (45 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/Contrib/VTK/OSGVTKMapperBase.cpp
r1161 r1178 458 458 459 459 460 void VTKMapperBase::pushToGeoRoots( NodePtrConstArgvalue)460 void VTKMapperBase::pushToGeoRoots(const NodePtr value) 461 461 { 462 462 if(value == NullFC) … … 487 487 } 488 488 489 void VTKMapperBase::insertIntoGeoRoots( UInt32uiIndex,490 NodePtrConstArgvalue )489 void VTKMapperBase::insertIntoGeoRoots( UInt32 uiIndex, 490 const NodePtr value ) 491 491 { 492 492 if(value == NullFC) … … 504 504 } 505 505 506 void VTKMapperBase::replaceInGeoRoots( UInt32uiIndex,507 NodePtrConstArgvalue )506 void VTKMapperBase::replaceInGeoRoots( UInt32 uiIndex, 507 const NodePtr value ) 508 508 { 509 509 if(value == NullFC) … … 524 524 } 525 525 526 void VTKMapperBase::replaceInGeoRoots( NodePtrConstArgpOldElem,527 NodePtrConstArgpNewElem)526 void VTKMapperBase::replaceInGeoRoots(const NodePtr pOldElem, 527 const NodePtr pNewElem) 528 528 { 529 529 if(pNewElem == NullFC) … … 563 563 } 564 564 565 void VTKMapperBase::removeFromGeoRoots( NodePtrConstArgvalue)565 void VTKMapperBase::removeFromGeoRoots(const NodePtr value) 566 566 { 567 567 Int32 iElemIdx = _mfGeoRoots.findIndex(value); … … 588 588 } 589 589 590 void VTKMapperBase::pushToGeometries( GeometryPtrConstArgvalue)590 void VTKMapperBase::pushToGeometries(const GeometryPtr value) 591 591 { 592 592 if(value == NullFC) … … 617 617 } 618 618 619 void VTKMapperBase::insertIntoGeometries( UInt32uiIndex,620 GeometryPtrConstArgvalue )619 void VTKMapperBase::insertIntoGeometries( UInt32 uiIndex, 620 const GeometryPtr value ) 621 621 { 622 622 if(value == NullFC) … … 634 634 } 635 635 636 void VTKMapperBase::replaceInGeometries( UInt32uiIndex,637 GeometryPtrConstArgvalue )636 void VTKMapperBase::replaceInGeometries( UInt32 uiIndex, 637 const GeometryPtr value ) 638 638 { 639 639 if(value == NullFC) … … 654 654 } 655 655 656 void VTKMapperBase::replaceInGeometries( GeometryPtrConstArgpOldElem,657 GeometryPtrConstArgpNewElem)656 void VTKMapperBase::replaceInGeometries(const GeometryPtr pOldElem, 657 const GeometryPtr pNewElem) 658 658 { 659 659 if(pNewElem == NullFC) … … 693 693 } 694 694 695 void VTKMapperBase::removeFromGeometries( GeometryPtrConstArgvalue)695 void VTKMapperBase::removeFromGeometries(const GeometryPtr value) 696 696 { 697 697 Int32 iElemIdx = _mfGeometries.findIndex(value); … … 718 718 } 719 719 720 void VTKMapperBase::pushToMaterials( ChunkMaterialPtrConstArgvalue)720 void VTKMapperBase::pushToMaterials(const ChunkMaterialPtr value) 721 721 { 722 722 if(value == NullFC) … … 747 747 } 748 748 749 void VTKMapperBase::insertIntoMaterials( UInt32uiIndex,750 ChunkMaterialPtrConstArgvalue )749 void VTKMapperBase::insertIntoMaterials( UInt32 uiIndex, 750 const ChunkMaterialPtr value ) 751 751 { 752 752 if(value == NullFC) … … 764 764 } 765 765 766 void VTKMapperBase::replaceInMaterials( UInt32uiIndex,767 ChunkMaterialPtrConstArgvalue )766 void VTKMapperBase::replaceInMaterials( UInt32 uiIndex, 767 const ChunkMaterialPtr value ) 768 768 { 769 769 if(value == NullFC) … … 784 784 } 785 785 786 void VTKMapperBase::replaceInMaterials( ChunkMaterialPtrConstArgpOldElem,787 ChunkMaterialPtrConstArgpNewElem)786 void VTKMapperBase::replaceInMaterials(const ChunkMaterialPtr pOldElem, 787 const ChunkMaterialPtr pNewElem) 788 788 { 789 789 if(pNewElem == NullFC) … … 823 823 } 824 824 825 void VTKMapperBase::removeFromMaterials( ChunkMaterialPtrConstArgvalue)825 void VTKMapperBase::removeFromMaterials(const ChunkMaterialPtr value) 826 826 { 827 827 Int32 iElemIdx = _mfMaterials.findIndex(value); … … 848 848 } 849 849 850 void VTKMapperBase::pushToMaterialChunks( MaterialChunkPtrConstArgvalue)850 void VTKMapperBase::pushToMaterialChunks(const MaterialChunkPtr value) 851 851 { 852 852 if(value == NullFC) … … 877 877 } 878 878 879 void VTKMapperBase::insertIntoMaterialChunks( UInt32uiIndex,880 MaterialChunkPtrConstArgvalue )879 void VTKMapperBase::insertIntoMaterialChunks( UInt32 uiIndex, 880 const MaterialChunkPtr value ) 881 881 { 882 882 if(value == NullFC) … … 894 894 } 895 895 896 void VTKMapperBase::replaceInMaterialChunks( UInt32uiIndex,897 MaterialChunkPtrConstArgvalue )896 void VTKMapperBase::replaceInMaterialChunks( UInt32 uiIndex, 897 const MaterialChunkPtr value ) 898 898 { 899 899 if(value == NullFC) … … 914 914 } 915 915 916 void VTKMapperBase::replaceInMaterialChunks( MaterialChunkPtrConstArgpOldElem,917 MaterialChunkPtrConstArgpNewElem)916 void VTKMapperBase::replaceInMaterialChunks(const MaterialChunkPtr pOldElem, 917 const MaterialChunkPtr pNewElem) 918 918 { 919 919 if(pNewElem == NullFC) … … 953 953 } 954 954 955 void VTKMapperBase::removeFromMaterialChunks( MaterialChunkPtrConstArgvalue)955 void VTKMapperBase::removeFromMaterialChunks(const MaterialChunkPtr value) 956 956 { 957 957 Int32 iElemIdx = _mfMaterialChunks.findIndex(value); … … 978 978 } 979 979 980 void VTKMapperBase::pushToPositions( GeoPnt3fPropertyPtrConstArgvalue)980 void VTKMapperBase::pushToPositions(const GeoPnt3fPropertyPtr value) 981 981 { 982 982 if(value == NullFC) … … 1007 1007 } 1008 1008 1009 void VTKMapperBase::insertIntoPositions( UInt32uiIndex,1010 GeoPnt3fPropertyPtrConstArgvalue )1009 void VTKMapperBase::insertIntoPositions( UInt32 uiIndex, 1010 const GeoPnt3fPropertyPtr value ) 1011 1011 { 1012 1012 if(value == NullFC) … … 1024 1024 } 1025 1025 1026 void VTKMapperBase::replaceInPositions( UInt32uiIndex,1027 GeoPnt3fPropertyPtrConstArgvalue )1026 void VTKMapperBase::replaceInPositions( UInt32 uiIndex, 1027 const GeoPnt3fPropertyPtr value ) 1028 1028 { 1029 1029 if(value == NullFC) … … 1044 1044 } 1045 1045 1046 void VTKMapperBase::replaceInPositions( GeoPnt3fPropertyPtrConstArgpOldElem,1047 GeoPnt3fPropertyPtrConstArgpNewElem)1046 void VTKMapperBase::replaceInPositions(const GeoPnt3fPropertyPtr pOldElem, 1047 const GeoPnt3fPropertyPtr pNewElem) 1048 1048 { 1049 1049 if(pNewElem == NullFC) … … 1083 1083 } 1084 1084 1085 void VTKMapperBase::removeFromPositions( GeoPnt3fPropertyPtrConstArgvalue)1085 void VTKMapperBase::removeFromPositions(const GeoPnt3fPropertyPtr value) 1086 1086 { 1087 1087 Int32 iElemIdx = _mfPositions.findIndex(value); … … 1108 1108 } 1109 1109 1110 void VTKMapperBase::pushToLength( GeoUInt32PropertyPtrConstArgvalue)1110 void VTKMapperBase::pushToLength(const GeoUInt32PropertyPtr value) 1111 1111 { 1112 1112 if(value == NullFC) … … 1137 1137 } 1138 1138 1139 void VTKMapperBase::insertIntoLength( UInt32uiIndex,1140 GeoUInt32PropertyPtrConstArgvalue )1139 void VTKMapperBase::insertIntoLength( UInt32 uiIndex, 1140 const GeoUInt32PropertyPtr value ) 1141 1141 { 1142 1142 if(value == NullFC) … … 1154 1154 } 1155 1155 1156 void VTKMapperBase::replaceInLength( UInt32uiIndex,1157 GeoUInt32PropertyPtrConstArgvalue )1156 void VTKMapperBase::replaceInLength( UInt32 uiIndex, 1157 const GeoUInt32PropertyPtr value ) 1158 1158 { 1159 1159 if(value == NullFC) … … 1174 1174 } 1175 1175 1176 void VTKMapperBase::replaceInLength( GeoUInt32PropertyPtrConstArgpOldElem,1177 GeoUInt32PropertyPtrConstArgpNewElem)1176 void VTKMapperBase::replaceInLength(const GeoUInt32PropertyPtr pOldElem, 1177 const GeoUInt32PropertyPtr pNewElem) 1178 1178 { 1179 1179 if(pNewElem == NullFC) … … 1213 1213 } 1214 1214 1215 void VTKMapperBase::removeFromLength( GeoUInt32PropertyPtrConstArgvalue)1215 void VTKMapperBase::removeFromLength(const GeoUInt32PropertyPtr value) 1216 1216 { 1217 1217 Int32 iElemIdx = _mfLength.findIndex(value); … … 1238 1238 } 1239 1239 1240 void VTKMapperBase::pushToTypes( GeoUInt8PropertyPtrConstArgvalue)1240 void VTKMapperBase::pushToTypes(const GeoUInt8PropertyPtr value) 1241 1241 { 1242 1242 if(value == NullFC) … … 1267 1267 } 1268 1268 1269 void VTKMapperBase::insertIntoTypes( UInt32uiIndex,1270 GeoUInt8PropertyPtrConstArgvalue )1269 void VTKMapperBase::insertIntoTypes( UInt32 uiIndex, 1270 const GeoUInt8PropertyPtr value ) 1271 1271 { 1272 1272 if(value == NullFC) … … 1284 1284 } 1285 1285 1286 void VTKMapperBase::replaceInTypes( UInt32uiIndex,1287 GeoUInt8PropertyPtrConstArgvalue )1286 void VTKMapperBase::replaceInTypes( UInt32 uiIndex, 1287 const GeoUInt8PropertyPtr value ) 1288 1288 { 1289 1289 if(value == NullFC) … … 1304 1304 } 1305 1305 1306 void VTKMapperBase::replaceInTypes( GeoUInt8PropertyPtrConstArgpOldElem,1307 GeoUInt8PropertyPtrConstArgpNewElem)1306 void VTKMapperBase::replaceInTypes(const GeoUInt8PropertyPtr pOldElem, 1307 const GeoUInt8PropertyPtr pNewElem) 1308 1308 { 1309 1309 if(pNewElem == NullFC) … … 1343 1343 } 1344 1344 1345 void VTKMapperBase::removeFromTypes( GeoUInt8PropertyPtrConstArgvalue)1345 void VTKMapperBase::removeFromTypes(const GeoUInt8PropertyPtr value) 1346 1346 { 1347 1347 Int32 iElemIdx = _mfTypes.findIndex(value); … … 1368 1368 } 1369 1369 1370 void VTKMapperBase::pushToColors( GeoColor4fPropertyPtrConstArgvalue)1370 void VTKMapperBase::pushToColors(const GeoColor4fPropertyPtr value) 1371 1371 { 1372 1372 if(value == NullFC) … … 1397 1397 } 1398 1398 1399 void VTKMapperBase::insertIntoColors( UInt32uiIndex,1400 GeoColor4fPropertyPtrConstArgvalue )1399 void VTKMapperBase::insertIntoColors( UInt32 uiIndex, 1400 const GeoColor4fPropertyPtr value ) 1401 1401 { 1402 1402 if(value == NullFC) … … 1414 1414 } 1415 1415 1416 void VTKMapperBase::replaceInColors( UInt32uiIndex,1417 GeoColor4fPropertyPtrConstArgvalue )1416 void VTKMapperBase::replaceInColors( UInt32 uiIndex, 1417 const GeoColor4fPropertyPtr value ) 1418 1418 { 1419 1419 if(value == NullFC) … … 1434 1434 } 1435 1435 1436 void VTKMapperBase::replaceInColors( GeoColor4fPropertyPtrConstArgpOldElem,1437 GeoColor4fPropertyPtrConstArgpNewElem)1436 void VTKMapperBase::replaceInColors(const GeoColor4fPropertyPtr pOldElem, 1437 const GeoColor4fPropertyPtr pNewElem) 1438 1438 { 1439 1439 if(pNewElem == NullFC) … … 1473 1473 } 1474 1474 1475 void VTKMapperBase::removeFromColors( GeoColor4fPropertyPtrConstArgvalue)1475 void VTKMapperBase::removeFromColors(const GeoColor4fPropertyPtr value) 1476 1476 { 1477 1477 Int32 iElemIdx = _mfColors.findIndex(value); … … 1498 1498 } 1499 1499 1500 void VTKMapperBase::pushToNormals( GeoVec3fPropertyPtrConstArgvalue)1500 void VTKMapperBase::pushToNormals(const GeoVec3fPropertyPtr value) 1501 1501 { 1502 1502 if(value == NullFC) … … 1527 1527 } 1528 1528 1529 void VTKMapperBase::insertIntoNormals( UInt32uiIndex,1530 GeoVec3fPropertyPtrConstArgvalue )1529 void VTKMapperBase::insertIntoNormals( UInt32 uiIndex, 1530 const GeoVec3fPropertyPtr value ) 1531 1531 { 1532 1532 if(value == NullFC) … … 1544 1544 } 1545 1545 1546 void VTKMapperBase::replaceInNormals( UInt32uiIndex,1547 GeoVec3fPropertyPtrConstArgvalue )1546 void VTKMapperBase::replaceInNormals( UInt32 uiIndex, 1547 const GeoVec3fPropertyPtr value ) 1548 1548 { 1549 1549 if(value == NullFC) … … 1564 1564 } 1565 1565 1566 void VTKMapperBase::replaceInNormals( GeoVec3fPropertyPtrConstArgpOldElem,1567 GeoVec3fPropertyPtrConstArgpNewElem)1566 void VTKMapperBase::replaceInNormals(const GeoVec3fPropertyPtr pOldElem, 1567 const GeoVec3fPropertyPtr pNewElem) 1568 1568 { 1569 1569 if(pNewElem == NullFC) … … 1603 1603 } 1604 1604 1605 void VTKMapperBase::removeFromNormals( GeoVec3fPropertyPtrConstArgvalue)1605 void VTKMapperBase::removeFromNormals(const GeoVec3fPropertyPtr value) 1606 1606 { 1607 1607 Int32 iElemIdx = _mfNormals.findIndex(value);
