https://github.com/stefnotch/anime-rendering-experiments
Random experiments, probably nothing
https://github.com/stefnotch/anime-rendering-experiments
Last synced: 10 months ago
JSON representation
Random experiments, probably nothing
- Host: GitHub
- URL: https://github.com/stefnotch/anime-rendering-experiments
- Owner: stefnotch
- Created: 2021-03-18T20:40:02.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-07T08:29:25.000Z (about 5 years ago)
- Last Synced: 2025-07-01T00:06:55.463Z (12 months ago)
- Language: C#
- Size: 1.9 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Colored SDF in the Anime Rendering project
- Shapes with a color --> decompose to lines which define 2 colors + 2 layers (one for each side)
- Left side: red, layer 1 --> everything to the left on layer 1 is fully red, to the right we have a red SDF falloff
- Use this https://www.shadertoy.com/view/llK3Wm
- Contour textures http://webstaff.itn.liu.se/~stegu/contourtextures/LSCtex-longer.pdf
- Technically, I could get away with 3 stacked SDFs (since the 4th one is basically the "default" or "background")
- What happens if I slightly shift one of the colored borders? (like, only shift the 2nd layer)
- Remove green border
- Generate SDF from colored texture
- Higher res texture? Plus 3 more textures?
- Sharpening texture?
- Bezier Intersection https://stackoverflow.com/questions/27664298/calculating-intersection-point-of-quadratic-bezier-curve
- https://iquilezles.org/www/articles/distfunctions2d/distfunctions2d.htm
- https://www.iquilezles.org/www/articles/interiordistance/interiordistance.htm
- https://www.shadertoy.com/view/3t33WH
## Tentacle Cat
- [Procedural animation](https://www.youtube.com/watch?v=e6Gjhr1IP6w)
- Inverse Kinematics with [Quaternion Cyclic Coordinate Descent](https://zalo.github.io/blog/inverse-kinematics/)
- Investigate [inverse dynamics](https://medium.com/unity3danimation/create-your-own-inverse-dynamics-in-unity-1ed0371ee658)