mySurfaceActor = SVTK_DeviceActor::New();
mySurfaceActor->SetRepresentation(VTKViewer::Representation::Surface);
mySurfaceActor->SetUserMatrix(m);
+ mySurfaceActor->SetCoincident3DAllowed(true);
myEdgeActor = SVTK_DeviceActor::New();
myEdgeActor->SetRepresentation(VTKViewer::Representation::Wireframe);
myEdgeActor->SetUserMatrix(m);
+ myEdgeActor->SetCoincident3DAllowed(true);
myNodeActor = SVTK_DeviceActor::New();
myNodeActor->SetRepresentation(VTKViewer::Representation::Points);
SetPointSpriteMapper( aMapper );
+ myGeomFilter->SetAppendCoincident3D(true);
+
aMapper->Delete();
myEventCallbackCommand->SetClientData( this );
mySurfaceActor->SetRepresentation(VTKViewer::Representation::Surface);
mySurfaceActor->SetProperty(aProperty);
mySurfaceActor->SetUserMatrix(aMatrix);
+ mySurfaceActor->SetCoincident3DAllowed(true);
myEdgeActor = SVTK_DeviceActor::New();
myEdgeActor->SetRepresentation(VTKViewer::Representation::Wireframe);
myEdgeActor->SetUserMatrix(aMatrix);
myEdgeActor->GetProperty()->SetColor(255.,255.,255.);
+ myEdgeActor->SetCoincident3DAllowed(true);
+
myPointsActor = SVTK_DeviceActor::New();
myPointsActor->SetRepresentation(VTKViewer::Representation::Points);
myPointsActor->SetProperty(aProperty);