Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ben's Submission #20

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions INSTRUCTIONS.MD
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Name: Benjamin Sei
Pennkey: bensei

Citations:
https://www.iquilezles.org/www/articles/distfunctions/distfunctions.htm
https://www.iquilezles.org/www/articles/rmshadows/rmshadows.htm
https://www.shadertoy.com/view/7stSW7


https://ben-nin.github.io/hw02-raymarching-sdfs

Techniques:
This project showcases a scene from the Pixar film Soul in which Joe falls in to the Great Before. The scene is generated using SDFs, created by placing and combining geometry, and raymarching to find intersections in the scene. Currently, there is lambert reflection using estimated normals. A basic model of Joe falls down and rotates over time into the ground. And finally there is basic shadows.
Binary file added soul-The Great Before.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function main() {
processKeyPresses();
renderer.render(camera, flat, [
square,
], time);
], time / 100);
time++;
// stats.end();

Expand Down
Loading