finish 4
parent
31f496d2ba
commit
ec6da840be
|
@ -3,24 +3,38 @@ use nannou::{color::Mix, prelude::*};
|
||||||
use utils::*;
|
use utils::*;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
nannou::app(model).update(update).simple_window(view).run();
|
nannou::app(model)
|
||||||
|
.size(800, 600)
|
||||||
|
.update(update)
|
||||||
|
.simple_window(view)
|
||||||
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
struct Model {
|
struct Model {
|
||||||
points: Vec<Vec2>,
|
points: Vec<Point>,
|
||||||
|
bg_color: Color,
|
||||||
|
fg_color: Color,
|
||||||
|
}
|
||||||
|
type Color = rgb::Rgb<nannou::color::encoding::Linear<nannou::color::encoding::Srgb>>;
|
||||||
|
struct Point {
|
||||||
|
pos: Vec2,
|
||||||
}
|
}
|
||||||
|
|
||||||
fn model(_app: &App) -> Model {
|
const GOLDEN: f32 = 0.618033988;
|
||||||
let r = 300.0;
|
|
||||||
|
|
||||||
|
fn model(_app: &App) -> Model {
|
||||||
Model {
|
Model {
|
||||||
|
bg_color: srgb(1.0f32, 250.0 / 255.0, 250.0 / 255.0).into_linear(),
|
||||||
|
fg_color: srgb(189.0 / 255.0, 178.0 / 255.0, 1.0).into_linear(),
|
||||||
|
|
||||||
points: (0..100)
|
points: (0..100)
|
||||||
.map(|_| {
|
.map(|i| {
|
||||||
let r = r * random::<f32>().sqrt();
|
let theta = i as f32 * TAU * GOLDEN;
|
||||||
let theta = random::<f32>() * TAU;
|
let r = theta.sqrt();
|
||||||
let x = r * theta.cos();
|
let x = r * theta.cos();
|
||||||
let y = r * theta.sin();
|
let y = r * theta.sin();
|
||||||
vec2(x, y)
|
let pos = vec2(x, y) * 15.0;
|
||||||
|
Point { pos }
|
||||||
})
|
})
|
||||||
.collect(),
|
.collect(),
|
||||||
}
|
}
|
||||||
|
@ -28,7 +42,7 @@ fn model(_app: &App) -> Model {
|
||||||
|
|
||||||
fn update(_app: &App, model: &mut Model, _update: Update) {
|
fn update(_app: &App, model: &mut Model, _update: Update) {
|
||||||
for p in &mut model.points {
|
for p in &mut model.points {
|
||||||
*p += vec2(p.y, -p.x) * 0.01;
|
p.pos += vec2(p.pos.y, -p.pos.x).normalize() * 19.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,24 +50,19 @@ fn view(app: &App, model: &Model, frame: Frame) {
|
||||||
let t = frame.nth() as f32 / 60.0;
|
let t = frame.nth() as f32 / 60.0;
|
||||||
|
|
||||||
let draw = app.draw();
|
let draw = app.draw();
|
||||||
let bg_color = srgb(1.0f32, 250.0 / 255.0, 250.0 / 255.0);
|
|
||||||
let fg_color = srgb(189.0 / 255.0, 178.0 / 255.0, 1.0);
|
|
||||||
|
|
||||||
if frame.nth() == 1 {
|
if frame.nth() == 0 {
|
||||||
draw.background().color(bg_color);
|
draw.background().color(model.bg_color);
|
||||||
} else {
|
|
||||||
let win = app.window_rect();
|
|
||||||
draw.rect()
|
|
||||||
.wh(win.wh())
|
|
||||||
.color(srgba(1., 250.0 / 255.0, 250.0 / 255.0, 0.001));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
for p in &model.points {
|
for p in &model.points {
|
||||||
let m = map_sin(t * 1.2 + p.length() / 100.0, 0.0, 1.0).powi(3);
|
let m = map_sin(t * 0.3 + p.pos.length(), 0.0, 1.0).powi(3);
|
||||||
|
|
||||||
let color = fg_color.into_linear().mix(&bg_color.into_linear(), m);
|
let color: Color = model.fg_color.mix(&model.bg_color, m);
|
||||||
draw.ellipse().xy(*p).radius(10.0).color(color);
|
draw.ellipse().xy(p.pos).radius(10.0).color(color);
|
||||||
}
|
}
|
||||||
|
|
||||||
draw.to_frame(app, &frame).unwrap();
|
draw.to_frame(app, &frame).unwrap();
|
||||||
|
|
||||||
|
utils::record::record(app, &frame);
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,6 +7,10 @@ use nannou::prelude::*;
|
||||||
pub fn map_sin(v: f32, out_min: f32, out_max: f32) -> f32 {
|
pub fn map_sin(v: f32, out_min: f32, out_max: f32) -> f32 {
|
||||||
map_range(v.sin(), -1.0, 1.0, out_min, out_max)
|
map_range(v.sin(), -1.0, 1.0, out_min, out_max)
|
||||||
}
|
}
|
||||||
|
/// Maps the cosine of v to (out_min, out_max)
|
||||||
|
pub fn map_cos(v: f32, out_min: f32, out_max: f32) -> f32 {
|
||||||
|
map_range(v.cos(), -1.0, 1.0, out_min, out_max)
|
||||||
|
}
|
||||||
|
|
||||||
pub trait Vec2Extension {
|
pub trait Vec2Extension {
|
||||||
fn atan2(self) -> f32;
|
fn atan2(self) -> f32;
|
||||||
|
|
Loading…
Reference in New Issue