thebookofshaders/examples/README.md

45 lines
1.9 KiB
Markdown
Raw Normal View History

2015-03-15 15:21:47 +00:00
# List of Examples
2015-03-22 12:07:04 +00:00
The following is a list of examples present in this book.
2015-03-17 14:06:21 +00:00
### Chapters examples
* Getting started
2015-04-02 17:43:22 +00:00
* [Hello World](../02/)
2015-03-22 12:07:04 +00:00
- ["Hello World!"](../edit.html#02/hello_world.frag)
2015-04-02 17:43:22 +00:00
* [Uniforms](../03/)
2015-03-22 12:07:04 +00:00
- [u_time](../edit.html#03/time.frag)
- [gl_FragCoord](../edit.html#03/space.frag)
2015-03-17 14:06:21 +00:00
* Algorithmic drawing
2015-04-02 17:43:22 +00:00
* [Shaping functions](../05/)
2015-03-22 12:07:04 +00:00
- [Linear Interpolation](../edit.html#05/linear.frag)
- [Exponential Interpolation](../edit.html#05/expo.frag)
- [Step function](../edit.html#05/step.frag)
- [Smoothstep function](../edit.html#05/smoothstep.frag)
- [Iñigo Quiles's Impulse](../edit.html#05/impulse.frag)
- [Iñigo Quiles's Cubic Pulse](../edit.html#05/cubicpulse.frag)
- [Iñigo Quiles's Exponential Step](../edit.html#05/expstep.frag)
- [Iñigo Quiles's Parabola](../edit.html#05/parabola.frag)
- [Iñigo Quiles's Power Curve](../edit.html#05/pcurve.frag)
2015-04-02 17:43:22 +00:00
* [Color](../06/)
2015-03-22 12:07:04 +00:00
- [Mix](../edit.html#06/mix.frag)
2015-03-22 14:30:07 +00:00
- [Easing functions](../edit.html#06/easing.frag)
2015-03-22 12:07:04 +00:00
- [Gradient](../edit.html#06/gradient.frag)
- [HSB](../edit.html#06/hsb.frag)
- [HSB - Color Wheel](../edit.html#06/hsb-colorwheel.frag)
2015-03-17 14:06:21 +00:00
2015-04-02 17:43:22 +00:00
* [Shapes](../07/)
2015-04-02 21:27:45 +00:00
- Rectangle: [making](../edit.html#07/rect-making.frag), [function](../edit.html#07/rect.frag) and [distance-field](../edit.html#07/rect-df.frag)
2015-03-31 16:04:59 +00:00
- Circle: [making](../edit.html#07/circle-making.frag) and [function](../edit.html#07/circle.frag)
2015-04-15 19:30:08 +00:00
- [Batman (distance field)](../edit.html#07/batman.frag)
- [Line (distance field)](../edit.html#07/line.frag)
2015-04-02 17:43:22 +00:00
- [Cross](../edit.html#07/cross.frag)
2015-03-31 16:04:59 +00:00
- [Polar](../edit.html#07/polar.frag)
2015-04-15 19:30:08 +00:00
- [Polar (distance field)](../edit.html#07/shapes.frag)
- [Arrow (distance field)](../edit.html#07/arrow.frag)
2015-04-02 21:27:45 +00:00
2015-03-17 14:06:21 +00:00
### Advance
2015-03-22 12:07:04 +00:00
* [Moon](../edit.html#examples/moon.frag&examples/images/moon-texture.jpg)