https://github.com/joshb/triangleraster-java
A graphics demo written in Java that demonstrates triangle rasterization.
https://github.com/joshb/triangleraster-java
Last synced: 3 months ago
JSON representation
A graphics demo written in Java that demonstrates triangle rasterization.
- Host: GitHub
- URL: https://github.com/joshb/triangleraster-java
- Owner: joshb
- Created: 2013-04-23T15:49:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-23T15:50:08.000Z (over 12 years ago)
- Last Synced: 2025-03-16T09:42:17.547Z (8 months ago)
- Language: Java
- Size: 105 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
This is a small graphics demo written in Java that features
a simple triangle rasterization algorithm. The demo was
posted along with an article at: http://joshbeam.com/
This demo was developed and tested using the JDK that is
included with Mac OS X 10.6.4.
To build the demo, just run 'ant jar' from within the
directory containing the source code. This will create a
jar file called TriangleRaster.jar that you can then run.
If you don't have ant installed, you can obtain it from:
http://ant.apache.org/
Alternatively, you can compile and run the demo by running
the following commands from within the directory containing
the source code:
javac *.java
java TriangleRaster
Press the 'Escape' key to exit the demo.
The code is distributed under a BSD-style license.
Josh Beam
http://joshbeam.com/