Skip to content

Commit

Permalink
Merge pull request #555 from chrisprice/fix-model-run-instructions
Browse files Browse the repository at this point in the history
Fix model README run instructions
  • Loading branch information
hannobraun authored May 10, 2022
2 parents e550abb + cca7ea8 commit 3f8afda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion models/cuboid/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A model of a simple cuboid that demonstrates sweeping a 3D shape from a primitiv

To display this model, run the following from the repository root (model parameters are optional):
``` sh
cargo run -- --model cuboid --parameters x=3.0 y=2.0 z=1.0
cargo run -- --model cuboid --parameters x=3.0,y=2.0,z=1.0
```

![Screenshot of the cuboid model](cuboid.png)
2 changes: 1 addition & 1 deletion models/spacer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A simple spacer model that demonstrates the circle primitive, the difference ope

To display this model, run the following from the repository root (model parameters are optional):
``` sh
cargo run -- --model spacer --parameters outer=1.0 inner=0.5 height=1.0
cargo run -- --model spacer --parameters outer=1.0,inner=0.5,height=1.0
```

![Screenshot of the spacer model](spacer.png)
2 changes: 1 addition & 1 deletion models/star/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A model of a star that demonstrates sweeping a sketch to create a 3D shape, conc

To display this model, run the following from the repository root (model parameters are optional):
``` sh
cargo run -- --model star --parameters num_points=5 r1=1.0 r2=2.0 h=1.0
cargo run -- --model star --parameters num_points=5,r1=1.0,r2=2.0,h=1.0
```

![Screenshot of the star model](star.png)

0 comments on commit 3f8afda

Please sign in to comment.