### Build and Help Command for SIMD Noise Example Source: https://github.com/verpeteren/rust-simd-noise/blob/master/example/README.md Build the release version of the example application and display its help message to see available commands and options. ```bash Cargo build --release ./target/release/simdnoise-example --help ``` -------------------------------- ### SIMD Noise Example App Help Output Source: https://github.com/verpeteren/rust-simd-noise/blob/master/example/README.md This output shows the general usage of the simdnoise-example application, listing available noise generation commands and global options. ```text Example app that uses SIMD Noise Usage: simdnoise-example [OPTIONS] Commands: cellular fbm ridge turbulence gradient help Print this message or the help of the given subcommand(s) Options: -w, --width The width of the generated image [default: 1920] --height The height of the generated image [default: 1080] --depth The z dimension of the generated image [default: 1] --time