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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* */ package NET.worlds.scape;
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */
/* */ public class Mirror
/* */ extends Portal
/* */ {
/* */ public Mirror(float w, float h)
/* */ {
/* 36 */ super(w, h);
/* */
/* 38 */ connectTo(this);
/* */
/* 40 */ this.flags |= 0x4;
/* */ }
/* */
/* */
/* */ public Mirror(float llx, float lly, float llz, float urx, float ury, float urz)
/* */ {
/* 46 */ super(llx, lly, llz, urx, ury, urz);
/* */
/* 48 */ connectTo(this);
/* */
/* 50 */ this.flags |= 0x4;
/* */ }
/* */
/* */ public Mirror(Point3Temp llc, Point3Temp urc)
/* */ {
/* 55 */ super(llc, urc);
/* */
/* 57 */ connectTo(this);
/* */
/* 59 */ this.flags |= 0x4;
/* */ }
/* */
/* */
/* */
/* */
/* */ public BumpCalc getBumpCalc(BumpEventTemp b)
/* */ {
/* 67 */ if (this.bumpCalc == null)
/* 68 */ return Rect.standardPlaneBumpCalc;
/* 69 */ return this.bumpCalc;
/* */ }
/* */
/* */
/* */
/* */
/* */
/* */ public Mirror() {}
/* */
/* */
/* */
/* */
/* */ public boolean handle(BumpEventTemp b)
/* */ {
/* 83 */ return true;
/* */ }
/* */ }
/* Location: C:\Program Files (x86)\Worlds Inc\WorldsPlayer - Win7\lib\worlds.jar!\NET\worlds\scape\Mirror.class
* Java compiler version: 6 (50.0)
* JD-Core Version: 0.7.1
*/
|