32 lines
608 B
Markdown
32 lines
608 B
Markdown
|
Assignment 0: Generating turbulence with Rust!
|
||
|
===
|
||
|
|
||
|
This program generates PPM images.
|
||
|
|
||
|
Using the program
|
||
|
---
|
||
|
|
||
|
The binary provided has been built for Ubuntu, and has been tested on CSELabs.
|
||
|
Run `assignment-0 --help` to find out about all the options for using this
|
||
|
program.
|
||
|
|
||
|
Compiling the source
|
||
|
---
|
||
|
|
||
|
This project is a standard Rust program, and can be built with just a Rust
|
||
|
compiler. The version of Rust used is the current stable at the time of writing,
|
||
|
1.66.
|
||
|
|
||
|
Build the program using:
|
||
|
|
||
|
```
|
||
|
cargo build --release
|
||
|
```
|
||
|
|
||
|
The binary can be found in the `target` directory.
|
||
|
|
||
|
Contact
|
||
|
---
|
||
|
|
||
|
Author: Michael Zhang
|