.. | .. |
---|
1 | 1 | public class Box extends Object3D implements java.io.Serializable |
---|
2 | 2 | { |
---|
| 3 | + static final long serialVersionUID = 0; |
---|
3 | 4 | |
---|
4 | 5 | Box() |
---|
5 | 6 | { |
---|
.. | .. |
---|
78 | 79 | |
---|
79 | 80 | void getBounds(cVector min, cVector max, boolean xform) |
---|
80 | 81 | { |
---|
81 | | - super.getBounds(minima, maxima, xform); |
---|
| 82 | + super.getBounds(min, max, xform); |
---|
82 | 83 | // july 2014 LA.vecCopy(minima, min); |
---|
83 | 84 | // LA.vecCopy(maxima, max); |
---|
84 | 85 | // if (xform) |
---|
.. | .. |
---|
105 | 106 | cVector minima; |
---|
106 | 107 | cVector maxima; |
---|
107 | 108 | static float umap[] = { |
---|
108 | | - 0, 1, 0, 1, 1, 0, 1, 0 |
---|
| 109 | + 0, 1, 0, 1, 1, 0, 1, 0, |
---|
109 | 110 | }; |
---|
110 | 111 | static float vmap[] = { |
---|
111 | | - 0, 0, 1, 1, 1, 1, 0, 0 |
---|
| 112 | + 1, 1, 0, 0, 1, 1, 0, 0, |
---|
112 | 113 | }; |
---|
113 | 114 | static int faces[][] = { |
---|
114 | 115 | { |
---|