Closed4
Nannou | Rust メモ
入門記事
nannou::sketch
と nannou::app
の違いは?
nannou::app
では model
が扱える。
Nannou の Window における原点
GUI のプログラミングの世界では、画面左上の隅を原点(x: 0.0, y:0.0) の場合が多いけど、Nannou の場合は画面中心が原点。
enum をランダムに選ぶ
use rand::*;
use rand::seq::*;
enum Direction {
Left,
Right,
Up,
Down,
}
let mut rng = thread_rng();
let next_direction = [
Direction::Left,
Direction::Right,
Direction::Up,
Direction::Down,
].choose(&mut rng);
このスクラップは2021/09/04にクローズされました