summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-22 17:15:22 -0500
committerpommicket <pommicket@gmail.com>2023-01-22 17:15:22 -0500
commit9fff457d00a507cc6eb69f9be073463557936ec1 (patch)
tree6269dd8630d7503db4fd25087d77d5d7b8c9c746 /src
parent12cb5d119330d518dc9992c962c4cd748e8ef616 (diff)
update some things
Diffstat (limited to 'src')
-rw-r--r--src/main.rs4
-rw-r--r--src/sdf.rs2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 5a40014..9cbb610 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,13 +1,15 @@
/*
@TODO:
+- screenshot
+- RnToRn functions (& add back in RToR)
- let user go back&forth through past sdfs using scenes.txt file
- documentation
- GenRandom integers (just use 0..u32::MAX and add a modulus)
-- record a video
- blender-style rendering the picture in multiple frames
(this lets us look at super complicated SDFs while still processing input, etc. at 60 fps)
- better SDL api: Context + Window<'a> impl !Send+!Sync
- gallery view
+- record a cool video
*/
#![windows_subsystem = "windows"]
diff --git a/src/sdf.rs b/src/sdf.rs
index 8c38337..9a92905 100644
--- a/src/sdf.rs
+++ b/src/sdf.rs
@@ -200,6 +200,8 @@ pub enum R3ToR3 {
Wibbly,
#[prob(2)]
Sqrt(Constant),
+ // this was removed at some point.
+ // it doesn't really seem to be helpful.
#[prob(0)]
Twisty(Constant),
}