All public logs
From KitwarePublic
Jump to navigationJump to search
Combined display of all available logs of KitwarePublic. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
(newest | oldest) View (newer 50 | older 50) (20 | 50 | 100 | 250 | 500)- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ReadTextFile (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestReadTextFile.png</div> This example takes a plain text file of coordinates and reads them into a {{class|vtkPoints}}, which is then put into a {{class|vtkPolyData}} and displayed on the screen using a {{class|vtkVertexGlyphFilter}}. An example file may look like: 1 2 3 4 5 6 7 8 9 ''Note: for a simpler way to read such a file, see VTK/Examples/Cxx/IO/SimplePointsReader''. ==ReadTextFile.cxx== <source lang=...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ReadUnstructuredGrid (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/IO/ReadUnstructuredGrid ReadUnstructuredGrid] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/ReadUnknownTypeXMLFile (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestReadUnknownTypeXMLFile.png</div> This examples reads either a vtu (unstructured grid) or vtp (polydata) file and displays it to the screen. ==ReadUnknownTypeXMLFile.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyData.h> #include <vtkUnstructuredGrid.h> #include <vtkDataSetMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/SimplePointsReader (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/IO/SimplePointsReader SimplePointsReader] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/SimplePointsWriter (content was: "''Note: For the opposite operation (reading a points file) the SimplePointsReader example.'' ==SimplePointsWriter.cxx== <source lang="cpp" highlight="3,11-15"> #include <vtkSmartPointer.h> #include <vtkSphereSource.h> #include <vtkSimplePointsWriter.h> int main(int vtkNotUsed(argc), char* vtkNotUsed(argv)[]) { vtkSmartPointer<vtkSphereSource> sphereSource = vtkSmartPointer<vtkSphereSource>::New(); sphereSource->Update(); v...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/StructuredGridReader (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestStructuredGridReader.png</div> ==StructuredGridReader.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkStructuredGridReader.h> #include <vtkStructuredGridGeometryFilter.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> int main(int argc, char* argv[]) { // Verify input arguments if ( argc != 2 ) { std::cout <<...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/StructuredPointsReader (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestStructuredPointsReader.png</div> An example input file can be found at <VTKData>/Data/ironProt.vtk. ==StructuredPointsReader.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkStructuredPointsReader.h> #include <vtkImageDataGeometryFilter.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> int main(int argc, char* argv[]) {...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/VRML (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestVRML.png</div> This example loads a wrl file and displays it on the screen. An example file is [http://www.vtk.org/Wiki/Image:Bridge.wrl.zip here]. ==VRML.cxx== <source lang="cpp"> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkVRMLImporter.h> #include <vtkDataSet.h> #include <vtkPolyData.h> #include <vtkSmartPointer.h> int main ( int argc, char *argv[]) {...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/WritePLY (content was: "<div class="floatright">File:VTK_Examples_Baseline_IO_TestWritePLY.png</div> Note: Unlike vtkPolyDataXMLWriter and most other VTK writers, to write colors to the .ply file you must specify to the vtkPLYWriter: plyWriter->SetArrayName("Colors"); where your color array was created/named like this: vtkSmartPointer<vtkUnsignedCharArray> colors = vtkSmartPointer<vtkUnsignedCharArray>::New(); colors->SetNumberOfComponents(3); colors->SetName("Colors"); (This was...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/IO/WriteBMP (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_IO_TestWriteBMP.png</div> ==WriteBMP.cxx== <source lang="cpp"> #include <vtkImageData.h> #include <vtkBMPWriter.h> #include <vtkSmartPointer.h> #include <vtkImageMapper3D.h> #include <vtkImageCanvasSource2D.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkImageActor.h> #include <vtkBMPReader.h> #include <vtkInteractorStyleImage.h> int main(int argc, char *argv[])...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/InteractorStyleTerrain (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestInteractorStyleTerrain.png</div> ==InteractorStyleTerrain.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkInteractorStyleTerrain.h> int main(int, char *[]) { vtkSmartPointer<vtkSphereSourc...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/InteractorStyleUser (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestInteractorStyleUser.png</div> This style is designed to NOT provide any default functionality. You must specify how to handle every event that you want handled. ==InteractorStyleUser.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkCallbackCommand.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteract...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/KeypressEvents (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestHandleKeypress.png</div> This example shows how to catch keypress events. For example, do something if the user presses the 's' key. ==KeypressEvents.cxx== <source lang="cpp"> #include <vtkPolyDataMapper.h> #include <vtkObjectFactory.h> #include <vtkActor.h> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #incl...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/KeypressObserver (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestKeypressObserver.png</div> ==KeypressObserver.cxx== <source lang="cpp"> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkCallbackCommand.h> #include <vtkCommand.h> void KeypressCallbackFunction ( vtkObject* caller,...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/MouseEvents (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestMouseEvents.png</div> This example shows how to subclass an interactor style to implement custom behaviors. See VTK/Examples/Cxx/Interaction/MouseEventsObserver for a different approach that uses an existing interactor style class and adds an event observer to it. ==MouseEvents.cxx== <source lang="cpp"> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #includ...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/MouseEventsObserver (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestMouseObserver.png</div> ==MouseEventsObserver.cxx== <source lang="cpp"> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkRenderer.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkCommand.h> #include <vtkActor.h> #include <vtkCallbackCommand.h> #include <vtkSmartPointer.h> #include <vtkPointPicker.h> #include <vtkCamera.h> //#include <vtkInteractorObs...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/MoveAGlyph (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestMoveAGlyph.png</div> This example allows the user to reposition a glyph. It does this by faking the interactor into thinking that a new actor (MoveActor) is the object to be interacted with. We use the array generated by glyph3D->GeneratePointIdsOn() to determine the point associated with the glyph that the user selected. A "ghost" actor of the selected glyph is generated (because all of the glyphs are part...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/MoveAVertexUnstructuredGrid (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Interaction_TestMoveAVertexUnstructuredGrid.png</div> ==MoveAVertexUnstructuredGrid.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPointPicker.h> #include <vtkSphereSource.h> #include <vtkGlyph3D.h> #include <vtkPointData.h> #include <vtkIdTypeArray.h> #include <vtkDataSetSurfaceFilter.h> #include <vtkRendererCollection.h> #include <vtkProperty.h> #include <vtkPlanes.h> #include...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/ObserverMemberFunction (content was: "<div class="floatcenter">File:VTK_Examples_Baseline_Interaction_TestObserverMemberFunction.png</div> You must use the git version of VTK from at least 10/11/2010 to use this functionality. ==ObserverMemberFunction.cxx== <source lang="cpp"> #include <vtkPolyDataMapper.h> #include <vtkObjectFactory.h> #include <vtkCommand.h> #include <vtkActor.h> #include <vtkSmartPointer.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/PickableOff (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestPickableOff.png</div> ==PickableOff.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkConeSource.h> #include <vtkPolyDataMapper.h> #include <vtkProperty.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vtkInteractorStyleTrackballActor.h> int main(int, char *[]) { vtkSmartPointer<vtkConeSource> coneSource0 =...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/Picking (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestPicking.png</div> ==Picking.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkSphereSource.h> #include <vtkRendererCollection.h> #include <vtkCellArray.h> #include <vtkInteractorStyleTrackballCamera.h> #include <vtkObjectFactory.h> #include <vtkPlaneSource.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/PointPicker (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestPointPicker.png</div> This example demonstrates how to get the closest point in the data set to the mouse click. ==PointPicker.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkRendererCollection.h> #include <vtkPointPicker.h> #include <vtkSphereSource.h> #include <vtkPolyDataMapper.h> #include <vtkRenderer.h> #include <vtkRenderWindow.h> #include <vtkRenderWindowInteractor.h> #include <vt...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/RubberBand2D (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestRubberBand2D.png</div> This example shows how to get the coordinates of the corners of the rubber band (the box that is drawn). ==RubberBand2D.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vt...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/RubberBand2DObserver (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestRubberBand2DObserver.png</div> ==RubberBand2DObserver.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkInteractorStyleRubberBand2D.h> #include <vtkCallbackCommand.h> void SelectionChangedCall...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/RubberBand3D (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestRubberBand3D.png</div> ==RubberBand3D.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkInteractorStyleRubberBand3D.h> #include <vtkObjectFactory.h> class MyRubberBand3D : public vtkInteractor...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/RubberBandPick (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestRubberBandPick.png</div> Press 'r', then make a selection with the left mouse button. ==RubberBandPick.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkInteractorStyleRubberBandPick.h> int m...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/RubberBandZoom (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestRubberBandZoom.png</div> This example demonstrates how to select a region of the window to zoom in. ==RubberBandZoom.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWindowInteractor.h> #include <vtkPolyData.h> #include <vtkSphereSource.h> #include <vtkInteractorStyleRubberBand...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/SelectAVertex (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestSelectAVertex.png</div> Click and drag a vertex by "ghosting" a glyph over the selected vertex and using it for the interaction. ==SelectAVertex.cxx== <source lang="cpp"> #include <vtkVersion.h> #include <vtkSmartPointer.h> #include <vtkPointPicker.h> #include <vtkSphereSource.h> #include <vtkGlyph3D.h> #include <vtkPointData.h> #include <vtkIdTypeArray.h> #include <vtkDataSetSurfaceFilter.h> #include <vtkR...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/SelectAnActor (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestSelectAnActor.png</div> ==SelectAnActor.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkActor.h> #include <vtkCellArray.h> #include <vtkInteractorStyleTrackballActor.h> #include <vtkObjectFactory.h> #include <vtkCubeSource.h> #include <vtkSphereSource.h> #include <vtkPoints.h> #include <vtkPolyData.h> #include <vtkPolyDataMapper.h> #include <vtkPropPicker.h> #include <vtkRenderWindow.h>...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/ShiftAndControl (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestShiftAndControl.png</div> Some parts of this example are currently broken. GetAltKey() does not work? The window moves instead. This example demonstrates how to "control+click" and "shift+click" an actor. ==ShiftAndControl.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkPolyDataMapper.h> #include <vtkActor.h> #include <vtkRenderWindow.h> #include <vtkRenderer.h> #include <vtkRenderWind...")
- 02:58, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Interaction/StyleSwitch (content was: "<div class="floatright">File:VTK_Examples_Baseline_Interaction_TestStyleSwitch.png</div> The class vtkInteractorStyleSwitch allows handles interactively switching between four interactor styles -- joystick actor, joystick camera, trackball actor, and trackball camera. Type 'j' or 't' to select joystick or trackball, and type 'c' or 'a' to select camera or actor. The default interactor style is joystick camera. ==StyleSwitch.cxx== <source lang="cpp"> #include <vtkSmartPoint...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Databases/SQL/MySQL/ConnectAndRead (content was: "==ConnectAndRead.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMySQLDatabase.h> #include <vtkSQLQuery.h> #include <vtkVariant.h> If you get the error: Unsupported protocol: mysql It means you must recompile VTK with VTK_USE_MYSQL = ON If you get the error: vtkMySQLDatabase::New() is not defined It means that cmake did not find your mysql include and library path correctly (ie. MYSQL_INCLUDE_DIRECTORIES, etc): int main(int, char *[]) { // url syn...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Databases/SQL/MySQL/CreateDatabase (content was: "==CreateDatabase.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMySQLDatabase.h> #include <vtkSQLQuery.h> #include <vtkVariant.h> int main(int, char *[]) { vtkSmartPointer<vtkMySQLDatabase> db = vtkSmartPointer<vtkMySQLDatabase>::Take(vtkMySQLDatabase::SafeDownCast( vtkSQLDatabase::CreateFromURL( "mysql://root@localhost/TestDatabase" ) )); bool status = db->Open(); std::cout << "Database open? " << status << std::endl; if(!stat...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Databases/SQL/MySQL/WriteToDatabase (content was: "==WriteToDatabase.cxx== <source lang="cpp"> #include <vtkSmartPointer.h> #include <vtkMySQLDatabase.h> #include <vtkSQLQuery.h> #include <vtkVariant.h> int main(int, char *[]) { // url syntax: // mysql://'[[username[':'password]'@']hostname[':'port]]'/'[dbname] vtkSmartPointer<vtkMySQLDatabase> db = vtkSmartPointer<vtkMySQLDatabase>::Take(vtkMySQLDatabase::SafeDownCast( vtkSQLDatabase::CreateFromURL( "mysql://root@localhost/TestDatabase" ) )); bool st...")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Demos/VisualDebugging (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Databases/SQL SQL] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Demos/vtkTestFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Demos/VisualDebugging VisualDebugging] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/AlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/AlgorithmFilter AlgorithmFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/AlgorithmSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/AlgorithmSource AlgorithmSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/FilterProgress (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/FilterProgress FilterProgress] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/FilterSelfProgress (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/FilterSelfProgress FilterSelfProgress] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/GraphAlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/GraphAlgorithmFilter GraphAlgorithmFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/GraphAlgorithmSource (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/GraphAlgorithmSource GraphAlgorithmSource] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/ImageAlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/ImageAlgorithmFilter ImageAlgorithmFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/MultipleInputPorts (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/MultipleInputPorts MultipleInputPorts] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/PolyDataAlgorithmReader (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/PolyDataAlgorithmReader PolyDataAlgorithmReader] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/PolyDataFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/PolyDataFilter PolyDataFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/ProgressReport (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/ProgressReport ProgressReport] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/Warnings (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/Warnings Warnings] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =")
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkImageAlgorithmFilter (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/Warnings Warnings] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))
- 02:55, 28 April 2021 Cquammen talk contribs deleted page VTK/Examples/Cxx/Developers/vtkTest (content was: "= '''See [https://lorensen.github.io/VTKExamples/site/Cxx/Developers/vtkImageAlgorithmFilter vtkImageAlgorithmFilter] on the new [https://lorensen.github.io/VTKExamples/site/ VTKExamples website].''' =", and the only contributor was "Lorensen" (talk))