feat: Engine diagnostics #92

Merged
glen merged 16 commits from Vectornaut/dyna3:diagnostics into main 2025-07-21 04:18:50 +00:00
Showing only changes of commit edeb080745 - Show all commits

View file

@ -10,7 +10,11 @@
# find the manifest file for the application prototype
MANIFEST="$(dirname -- $0)/Cargo.toml"
cargo run --manifest-path $MANIFEST --example irisawa-hexlet; echo
cargo run --manifest-path $MANIFEST --example three-spheres; echo
cargo run --manifest-path $MANIFEST --example point-on-sphere; echo
cargo run --manifest-path $MANIFEST --example kaleidocycle
# set up the command that runs each example
RUN_EXAMPLE="cargo run --manifest-path $MANIFEST --example"
# run the examples
$RUN_EXAMPLE irisawa-hexlet; echo
$RUN_EXAMPLE three-spheres; echo
$RUN_EXAMPLE point-on-sphere; echo
$RUN_EXAMPLE kaleidocycle