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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
| // Decompiled by Jad v1.5.7b. Copyright 1997-99 Pavel Kouznetsov.
| // Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
| // Decompiler options: packimports(3)
| // Source File Name: Constants.java
|
| //package povtree.interfaces;
|
| public interface Constants
| {
| //public static final double pi = math.PI;
| //public static final double radian = 0.01745329;
| public static final String EOL = System.getProperty("line.separator");
| public static final String tab = "\t\t\t";
| public static final String imageTypes[] = {
| "gif", "tga", "iff", "ppm", "pgm", "png", "jpeg", "tiff", "sys", "jpg"
| };
|
| public static final int beigeTheme[][] = {
| {
| 104, 95, 90
| }, {
| 164, 150, 145
| }, {
| 204, 190, 185
| }, {
| 111, 111, 111
| }, {
| 163, 159, 159
| }, {
| 224, 210, 200
| }, {
| 0, 0, 0
| }, {
| 255, 255, 255
| }
| };
| public static final int yellowTheme[][] = {
| {
| 104, 95, 90
| }, {
| 164, 150, 145 //
| }, {
| 204, 190, 185
| }, {
| 111, 111, 111
| }, {
| 163, 159, 159
| }, {
| //240, 226, 200 //
| 240, 226, 200 //
| }, {
| 0, 0, 0
| }, {
| 255, 255, 255
| }
| };
| }
|
|