Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elemel/gutter
A poor man's dream
https://github.com/elemel/gutter
Last synced: 4 days ago
JSON representation
A poor man's dream
- Host: GitHub
- URL: https://github.com/elemel/gutter
- Owner: elemel
- License: mit
- Created: 2020-07-02T08:48:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-19T20:49:33.000Z (over 4 years ago)
- Last Synced: 2024-11-09T19:12:38.953Z (2 months ago)
- Language: Lua
- Homepage:
- Size: 2.07 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gutter
> *We are all in the gutter, but some of us are looking at the stars.*
>
> — Oscar Wilde![Surface splatting](surface-splatting.png)
Behold my exploration of surface splatting in LÖVE.
The surface disks are drawn as indexed triangle pairs.
A pixel shader discards any pixel outside of the disk.## Dual contouring
As an alternative to surface splatting, you can generate a regular triangle mesh using dual contouring:
```sh
love . --mesher dual-contouring
```![Dual contouring](dual-contouring.png)