Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/vitepress/guide/tutorial/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ The ***trame*** widgets are easy to use. Here, we simply create the widget, defi

```python
def pipeline_widget():
widgets.GitTree(
trame.GitTree(
sources=(
"pipeline",
[
Expand Down
3 changes: 2 additions & 1 deletion docs/vitepress/guide/tutorial/html.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ with SinglePageLayout(server) as layout:
```bash
python 03_html/app_cone.py --port 1234
# or
python 03_html/solution_buttons_a.py --port 1234
python 03_html/solution_buttons.py --port 1234
```

Your browser should open automatically to `http://localhost:1234/`
Expand Down Expand Up @@ -176,6 +176,7 @@ Let's add a `VSlider` for adjusting the resolution, a `VBtn` with `VIcon` to res

```python
with SinglePageLayout(server) as layout:
# [...]
with layout.toolbar:
vuetify.VSpacer()
vuetify.VSlider(
Expand Down
7 changes: 6 additions & 1 deletion docs/vitepress/guide/tutorial/vtk.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,9 @@ with ... as layout:

```bash
python ./01_vtk/app_cone.py --port 1234
# or
python ./01_vtk/solution_cone.py --port 1234

```

Your browser should open automatically to `http://localhost:1234/`
Expand All @@ -211,7 +214,7 @@ Now you can take most of the code examples at [VTK Examples](https://kitware.git

[![Carotid Flow VTK Example](/assets/images/tutorial/carotid.jpg)](https://kitware.github.io/vtk-examples/site/Python/VisualizationAlgorithms/CarotidFlowGlyphs/)

We are going to implement [CarotidFlowGlyphs](https://kitware.github.io/vtk-examples/site/Python/VisualizationAlgorithms/CarotidFlowGlyphs/) by editing the file in `01_vtk/app_flow.py.py` which start from our cone rendering example solution.
We are going to implement [CarotidFlowGlyphs](https://kitware.github.io/vtk-examples/site/Python/VisualizationAlgorithms/CarotidFlowGlyphs/) by editing the file in `01_vtk/app_flow.py` which start from our cone rendering example solution.

<div class="print-break"></div>

Expand Down Expand Up @@ -363,6 +366,8 @@ Our pipelines are the same pipelines used in [VTK Examples](https://kitware.gith

```bash
python ./01_vtk/app_flow.py --port 1234
# or
python ./01_vtk/solution_flow.py --port 1234
```

Your browser should open automatically to `http://localhost:1234/`
Expand Down
Loading