1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
# Download tutorial
```
git clone https://github.com/Kitware/trame-tutorial.git
```
This produces a directory called ***trame-tutorial*** with the following file structure:
```
$ tree .
.
├── 00_setup
│ └── app.py
├── 01_vtk
│ ├── app_cone.py
│ ├── app_flow.py
│ ├── solution_cone.py
│ ├── solution_flow.py
│ └── solution_ray_cast.py
├── 02_layouts
│ ├── app_cone.py
│ ├── solution_FullScreenPage.py
│ ├── solution_SinglePage.py
│ └── solution_SinglePageWithDrawer.py
├── 03_html
│ ├── app_cone.py
│ ├── solution_buttons.py
│ └── solution_final.py
├── 04_application
│ ├── app.py
│ └── solution.py
├── 05_paraview
│ ├── SimpleCone.py
│ └── StateLoader.py
├── README.md
├── data
│ ├── carotid.vtk
│ ├── disk_out_ref.vtu
│ ├── ironProt.vtk
│ ├── pv-state-diskout.pvsm
│ └── pv-state.pvsm
└── presentation.pdf
7 directories, 24 files
```
The remaining tutorial steps assume that the current directory is the `trame-tutorial` root directory.
|