There is an ongoing effort to convert the examples in the VTK Book into VTKExamples.
Process to Convert Figures to Examples¶
- Follow the procedure ForDevelopers to contribute examples.
- Download a copy of the VTK Book.
- Look at the VTKBookFigures page and look for examples that have not been converted. These examples will not have a link to source code.
- Go to your VTK source checkout. Run the script VTKExamples/src/Admin/getDeletedFile.sh with the name of the figure example to be converted. This script will create a source file in the current directory and also report the url for the original repo location of the example.
- Pick a source directory to contain the new example. Look at the Chapter heading in the book to guide where to put the new example.
- Convert the source tcl code or old C++ code to C++ code that will compile and run with the current VTK API. Follow the guidelines for coding C++ examples.
- Edit the VTKBookFigures page as follows:
- In the first column of the table, add a link from the Figure to the source code.
- In the second column of the table, add the VTK classes that are illustrated by the example.
- In the third column, cut and paste the caption from the VTK Book.
- If there is a source file mentioned in the caption, make link to the original code url printed by the getDeletedFile.sh script.