-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReadMe.txt
36 lines (23 loc) · 1.27 KB
/
ReadMe.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
JTexGen - Procedural Texture Generation Library
=========================================================
version 1.1, July 2009
This software is distributed under the terms of the FSF Lesser Gnu
Public License (see lgpl.txt).
The code to generate the Mandelbrot set was taken from a applet by Eckhard Roessel published on the Java Boutique site (http://javaboutique.internet.com/Mandelbrot/). His Mandelbrot browser on that page is well worth a look.
Getting started
---------------
The distribution contains the JTexGen.jar file which you will need to include in your project. The doc folder contains documentation in html and pdf and javadoc in the api folder.
1. Start up your favorite IDE
2. Create a new java project.
3. Add the JTextGen jar to the project
4. Create a class with a main() method if you haven't already got one.
5. In the main method put :
public static void main(String[] args) {
TextureViewer.show(new ComplexMarble());
}
6. Execute it and click the Start button on the window that appears.
7. Go create some textures of your own.
Other
-----
Most classes are documented, with at least a description of what they do.
The documentation contains instructions on creating textures and using many of the pre-built in ones.