.. | .. |
---|
24 | 24 | |
---|
25 | 25 | private UUID uuid = UUID.randomUUID(); |
---|
26 | 26 | |
---|
27 | | - // TEMPORARY for mocap undo |
---|
28 | | - mocap.reader.BVHReader.BVHResult bvh; |
---|
29 | | - Object3D skeleton; |
---|
| 27 | + // TEMPORARY for mocap undo. No need to be transient. |
---|
| 28 | + mocap.reader.BVHReader.BVHResult savebvh; |
---|
| 29 | + Object3D saveskeleton; |
---|
30 | 30 | // |
---|
31 | 31 | |
---|
| 32 | + byte[] versions[]; |
---|
| 33 | + int versionindex = -1; |
---|
| 34 | + |
---|
32 | 35 | ScriptNode scriptnode; |
---|
33 | 36 | |
---|
34 | 37 | void InitOthers() |
---|
.. | .. |
---|
170 | 173 | |
---|
171 | 174 | void ExtractBigData(java.util.Hashtable<java.util.UUID, Object3D> hashtable) |
---|
172 | 175 | { |
---|
| 176 | + Object3D o; |
---|
| 177 | + |
---|
173 | 178 | if (hashtable.containsKey(GetUUID())) |
---|
174 | 179 | { |
---|
175 | | - Object3D o = hashtable.get(GetUUID()); |
---|
| 180 | + o = hashtable.get(GetUUID()); |
---|
176 | 181 | |
---|
177 | 182 | Grafreed.Assert(this.bRep == o.bRep); |
---|
178 | | - if (this.bRep != null) |
---|
179 | | - assert(this.bRep.support == o.transientrep); |
---|
| 183 | + //if (this.bRep != null) |
---|
| 184 | + // assert(this.bRep.support == o.transientrep); |
---|
| 185 | + if (this.support != null) |
---|
| 186 | + assert(this.support.bRep == o.transientrep); |
---|
| 187 | + } |
---|
| 188 | + else |
---|
| 189 | + { |
---|
| 190 | + o = new Object3D("copy of " + this.name); |
---|
180 | 191 | |
---|
181 | | - return; |
---|
| 192 | + hashtable.put(GetUUID(), o); |
---|
182 | 193 | } |
---|
183 | 194 | |
---|
184 | | - Object3D o = new Object3D(); |
---|
185 | | - |
---|
186 | | - hashtable.put(GetUUID(), o); |
---|
187 | | - |
---|
188 | | - for (int i=0; i<Size(); i++) |
---|
| 195 | + if (!blockloop) |
---|
189 | 196 | { |
---|
190 | | - get(i).ExtractBigData(hashtable); |
---|
| 197 | + blockloop = true; |
---|
| 198 | + |
---|
| 199 | + for (int i=0; i<Size(); i++) |
---|
| 200 | + { |
---|
| 201 | + get(i).ExtractBigData(hashtable); |
---|
| 202 | + } |
---|
| 203 | + |
---|
| 204 | + blockloop = false; |
---|
191 | 205 | } |
---|
192 | 206 | |
---|
193 | 207 | ExtractBigData(o); |
---|
.. | .. |
---|
195 | 209 | |
---|
196 | 210 | void ExtractBigData(Object3D o) |
---|
197 | 211 | { |
---|
| 212 | + if (o.bRep != null) |
---|
| 213 | + Grafreed.Assert(o.bRep == this.bRep); |
---|
| 214 | + |
---|
198 | 215 | o.bRep = this.bRep; |
---|
199 | | - if (this.bRep != null) |
---|
| 216 | +// July 2019 if (this.bRep != null) |
---|
| 217 | +// { |
---|
| 218 | +// o.transientrep = this.bRep.support; |
---|
| 219 | +// o.bRep.support = null; |
---|
| 220 | +// } |
---|
| 221 | + o.selection = this.selection; |
---|
| 222 | + o.versions = this.versions; |
---|
| 223 | + o.versionindex = this.versionindex; |
---|
| 224 | + |
---|
| 225 | + if (this.support != null) |
---|
200 | 226 | { |
---|
201 | | - o.transientrep = this.bRep.support; |
---|
202 | | - o.bRep.support = null; |
---|
| 227 | + if (o.transientrep != null) |
---|
| 228 | + Grafreed.Assert(o.transientrep == this.support.bRep); |
---|
| 229 | + |
---|
| 230 | + o.transientrep = this.support.bRep; |
---|
| 231 | + this.support.bRep = null; |
---|
203 | 232 | } |
---|
204 | 233 | |
---|
205 | 234 | // o.support = this.support; |
---|
.. | .. |
---|
223 | 252 | |
---|
224 | 253 | RestoreBigData(o); |
---|
225 | 254 | |
---|
226 | | - hashtable.remove(GetUUID()); |
---|
| 255 | + if (blockloop) |
---|
| 256 | + return; |
---|
| 257 | + |
---|
| 258 | + blockloop = true; |
---|
| 259 | + |
---|
| 260 | + //hashtable.remove(GetUUID()); |
---|
227 | 261 | |
---|
228 | 262 | for (int i=0; i<Size(); i++) |
---|
229 | 263 | { |
---|
230 | 264 | get(i).RestoreBigData(hashtable); |
---|
231 | 265 | } |
---|
| 266 | + |
---|
| 267 | + blockloop = false; |
---|
232 | 268 | } |
---|
233 | 269 | |
---|
234 | 270 | void RestoreBigData(Object3D o) |
---|
235 | 271 | { |
---|
236 | 272 | this.bRep = o.bRep; |
---|
237 | | - if (this.bRep != null) |
---|
238 | | - this.bRep.support = o.transientrep; |
---|
| 273 | + if (this.support != null && o.transientrep != null) |
---|
| 274 | + { |
---|
| 275 | + this.support.bRep = o.transientrep; |
---|
| 276 | + } |
---|
| 277 | + |
---|
| 278 | + this.selection = o.selection; |
---|
| 279 | + |
---|
| 280 | + this.versions = o.versions; |
---|
| 281 | + this.versionindex = o.versionindex; |
---|
| 282 | +// July 2019 if (this.bRep != null) |
---|
| 283 | +// this.bRep.support = o.transientrep; |
---|
239 | 284 | // this.support = o.support; |
---|
240 | 285 | // this.fileparent = o.fileparent; |
---|
241 | 286 | } |
---|
.. | .. |
---|
381 | 426 | } |
---|
382 | 427 | |
---|
383 | 428 | boolean live = false; |
---|
| 429 | + transient boolean keepdontselect; |
---|
384 | 430 | boolean dontselect = false; |
---|
385 | 431 | boolean hide = false; |
---|
386 | 432 | boolean link2master = false; // performs reset support/master at each frame |
---|
.. | .. |
---|
881 | 927 | |
---|
882 | 928 | if (marked && Globals.isLIVE() && live && |
---|
883 | 929 | //TEMP21aug2018 |
---|
884 | | - (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW) && |
---|
| 930 | + (Globals.DrawMode() == iCameraPane.SHADOW || !Globals.RENDERSHADOW || !Globals.COMPUTESHADOWWHENLIVE) && |
---|
885 | 931 | currentframe != Globals.framecount) |
---|
886 | 932 | { |
---|
887 | 933 | currentframe = Globals.framecount; |
---|
.. | .. |
---|
893 | 939 | |
---|
894 | 940 | boolean changedir = random && Math.random() < 0.01; // && !link2master; |
---|
895 | 941 | |
---|
896 | | - if (transformcount*factor > maxcount || (step == 1 && changedir)) |
---|
| 942 | + if (transformcount*factor >= maxcount && (rewind || random) || |
---|
| 943 | + (step == 1 && changedir)) |
---|
897 | 944 | { |
---|
898 | 945 | countdown = 1; |
---|
899 | 946 | delay = speedup?8:1; |
---|
.. | .. |
---|
965 | 1012 | if (material == null || material.multiply) |
---|
966 | 1013 | return true; |
---|
967 | 1014 | |
---|
| 1015 | + // Transparent objects are dynamic because we have to sort the triangles. |
---|
968 | 1016 | return material.opacity > 0.99; |
---|
969 | 1017 | } |
---|
970 | 1018 | |
---|
.. | .. |
---|
1365 | 1413 | toParent = LA.newMatrix(); |
---|
1366 | 1414 | fromParent = LA.newMatrix(); |
---|
1367 | 1415 | } |
---|
| 1416 | + |
---|
1368 | 1417 | LA.matCopy(other.toParent, toParent); |
---|
1369 | 1418 | LA.matCopy(other.fromParent, fromParent); |
---|
1370 | 1419 | |
---|
.. | .. |
---|
2386 | 2435 | } |
---|
2387 | 2436 | */ |
---|
2388 | 2437 | } |
---|
| 2438 | + else |
---|
| 2439 | + { |
---|
| 2440 | + //((ObjEditor)editWindow).SetupUI2(null); |
---|
| 2441 | + } |
---|
2389 | 2442 | } |
---|
2390 | 2443 | |
---|
2391 | 2444 | void createEditWindow(GroupEditor callee, boolean newWindow) //, boolean root) |
---|
.. | .. |
---|
2427 | 2480 | { |
---|
2428 | 2481 | editWindow.refreshContents(); |
---|
2429 | 2482 | } |
---|
| 2483 | + else |
---|
| 2484 | + { |
---|
| 2485 | + if (manipWindow != null) |
---|
| 2486 | + { |
---|
| 2487 | + manipWindow.refreshContents(); |
---|
| 2488 | + } |
---|
| 2489 | + } |
---|
| 2490 | + |
---|
2430 | 2491 | //if (parent != null) |
---|
2431 | 2492 | //parent.refreshEditWindow(); |
---|
2432 | 2493 | } |
---|
.. | .. |
---|
3057 | 3118 | { |
---|
3058 | 3119 | if (bRep != null) |
---|
3059 | 3120 | { |
---|
3060 | | - bRep.GenerateNormalsMINE(); |
---|
| 3121 | + bRep.MergeNormals(); //.GenerateNormalsMINE(); |
---|
3061 | 3122 | Touch(); |
---|
3062 | 3123 | } |
---|
3063 | 3124 | } |
---|
.. | .. |
---|
3503 | 3564 | if (blockloop) |
---|
3504 | 3565 | return; |
---|
3505 | 3566 | |
---|
3506 | | - if (marked || (bRep != null && material != null)) // borderline... |
---|
| 3567 | + if (//marked || // does not make sense |
---|
| 3568 | + (bRep != null || material != null)) // borderline... |
---|
3507 | 3569 | live = h; |
---|
3508 | 3570 | |
---|
3509 | 3571 | for (int i = 0; i < Size(); i++) |
---|
.. | .. |
---|
3524 | 3586 | return; |
---|
3525 | 3587 | |
---|
3526 | 3588 | //if (bRep != null) |
---|
3527 | | - if (marked || (bRep != null && material != null)) // borderline... |
---|
| 3589 | + if (//marked || // does not make sense |
---|
| 3590 | + (bRep != null || material != null)) // borderline... |
---|
3528 | 3591 | link2master = h; |
---|
3529 | 3592 | |
---|
3530 | 3593 | for (int i = 0; i < Size(); i++) |
---|
.. | .. |
---|
3544 | 3607 | if (blockloop) |
---|
3545 | 3608 | return; |
---|
3546 | 3609 | |
---|
3547 | | - if (marked || (bRep != null && material != null)) // borderline... |
---|
| 3610 | + if (//marked || // does not make sense |
---|
| 3611 | + (bRep != null || material != null)) // borderline... |
---|
3548 | 3612 | hide = h; |
---|
3549 | 3613 | |
---|
3550 | 3614 | for (int i = 0; i < Size(); i++) |
---|
.. | .. |
---|
3564 | 3628 | if (blockloop) |
---|
3565 | 3629 | return; |
---|
3566 | 3630 | |
---|
3567 | | - if (bRep != null && material != null) // borderline... |
---|
| 3631 | + if (bRep != null || material != null) // borderline... |
---|
3568 | 3632 | marked = h; |
---|
3569 | 3633 | |
---|
3570 | 3634 | for (int i = 0; i < Size(); i++) |
---|
.. | .. |
---|
3574 | 3638 | continue; |
---|
3575 | 3639 | blockloop = true; |
---|
3576 | 3640 | child.MarkLeaves(h); |
---|
| 3641 | + blockloop = false; |
---|
| 3642 | + // release(i); |
---|
| 3643 | + } |
---|
| 3644 | + } |
---|
| 3645 | + |
---|
| 3646 | + void RewindLeaves(boolean h) |
---|
| 3647 | + { |
---|
| 3648 | + if (blockloop) |
---|
| 3649 | + return; |
---|
| 3650 | + |
---|
| 3651 | + if (bRep != null || material != null) // borderline... |
---|
| 3652 | + rewind = h; |
---|
| 3653 | + |
---|
| 3654 | + for (int i = 0; i < Size(); i++) |
---|
| 3655 | + { |
---|
| 3656 | + Object3D child = (Object3D) get(i); // reserve(i); |
---|
| 3657 | + if (child == null) |
---|
| 3658 | + continue; |
---|
| 3659 | + blockloop = true; |
---|
| 3660 | + child.RewindLeaves(h); |
---|
| 3661 | + blockloop = false; |
---|
| 3662 | + // release(i); |
---|
| 3663 | + } |
---|
| 3664 | + } |
---|
| 3665 | + |
---|
| 3666 | + void RandomLeaves(boolean h) |
---|
| 3667 | + { |
---|
| 3668 | + if (blockloop) |
---|
| 3669 | + return; |
---|
| 3670 | + |
---|
| 3671 | + if (bRep != null || material != null) // borderline... |
---|
| 3672 | + random = h; |
---|
| 3673 | + |
---|
| 3674 | + for (int i = 0; i < Size(); i++) |
---|
| 3675 | + { |
---|
| 3676 | + Object3D child = (Object3D) get(i); // reserve(i); |
---|
| 3677 | + if (child == null) |
---|
| 3678 | + continue; |
---|
| 3679 | + blockloop = true; |
---|
| 3680 | + child.RandomLeaves(h); |
---|
3577 | 3681 | blockloop = false; |
---|
3578 | 3682 | // release(i); |
---|
3579 | 3683 | } |
---|
.. | .. |
---|
4914 | 5018 | } |
---|
4915 | 5019 | } |
---|
4916 | 5020 | |
---|
| 5021 | + ObjEditor GetWindow() |
---|
| 5022 | + { |
---|
| 5023 | + if (editWindow != null) |
---|
| 5024 | + return editWindow; |
---|
| 5025 | + |
---|
| 5026 | + return manipWindow; |
---|
| 5027 | + } |
---|
| 5028 | + |
---|
4917 | 5029 | cTreePath Select(int indexcount, boolean deselect) |
---|
4918 | 5030 | { |
---|
4919 | 5031 | if (hide || dontselect) |
---|
.. | .. |
---|
4950 | 5062 | if (leaf != null) |
---|
4951 | 5063 | { |
---|
4952 | 5064 | cTreePath tp = new cTreePath(this, leaf); |
---|
4953 | | - if (editWindow != null) |
---|
| 5065 | + ObjEditor window = GetWindow(); |
---|
| 5066 | + if (window != null) |
---|
4954 | 5067 | { |
---|
4955 | 5068 | //System.out.println("editWindow = " + editWindow + " vs " + this); |
---|
4956 | | - editWindow.Select(tp, deselect, true); |
---|
| 5069 | + window.Select(tp, deselect, true); |
---|
4957 | 5070 | } |
---|
4958 | 5071 | |
---|
4959 | 5072 | return tp; |
---|
.. | .. |
---|
4970 | 5083 | |
---|
4971 | 5084 | if (child == null) |
---|
4972 | 5085 | continue; |
---|
| 5086 | + |
---|
4973 | 5087 | if (child.HasTransparency() && child.size() != 0) |
---|
4974 | 5088 | { |
---|
4975 | 5089 | cTreePath leaf = child.Select(indexcount, deselect); |
---|
.. | .. |
---|
4979 | 5093 | if (leaf != null) |
---|
4980 | 5094 | { |
---|
4981 | 5095 | cTreePath tp = new cTreePath(this, leaf); |
---|
4982 | | - if (editWindow != null) |
---|
| 5096 | + ObjEditor window = GetWindow(); |
---|
| 5097 | + if (window != null) |
---|
4983 | 5098 | { |
---|
4984 | | - editWindow.Select(tp, deselect, true); |
---|
| 5099 | + window.Select(tp, deselect, true); |
---|
4985 | 5100 | } |
---|
4986 | 5101 | |
---|
4987 | 5102 | return tp; |
---|
.. | .. |
---|
5306 | 5421 | blockloop = false; |
---|
5307 | 5422 | } |
---|
5308 | 5423 | |
---|
| 5424 | + void ResetSelectable() |
---|
| 5425 | + { |
---|
| 5426 | + if (blockloop) |
---|
| 5427 | + return; |
---|
| 5428 | + |
---|
| 5429 | + blockloop = true; |
---|
| 5430 | + |
---|
| 5431 | + keepdontselect = dontselect; |
---|
| 5432 | + dontselect = true; |
---|
| 5433 | + |
---|
| 5434 | + Object3D child; |
---|
| 5435 | + int nb = Size(); |
---|
| 5436 | + for (int i = 0; i < nb; i++) |
---|
| 5437 | + { |
---|
| 5438 | + child = (Object3D) get(i); |
---|
| 5439 | + if (child == null) |
---|
| 5440 | + continue; |
---|
| 5441 | + child.ResetSelectable(); |
---|
| 5442 | + } |
---|
| 5443 | + |
---|
| 5444 | + blockloop = false; |
---|
| 5445 | + } |
---|
| 5446 | + |
---|
| 5447 | + void RestoreSelectable() |
---|
| 5448 | + { |
---|
| 5449 | + if (blockloop) |
---|
| 5450 | + return; |
---|
| 5451 | + |
---|
| 5452 | + blockloop = true; |
---|
| 5453 | + |
---|
| 5454 | + dontselect = keepdontselect; |
---|
| 5455 | + |
---|
| 5456 | + Object3D child; |
---|
| 5457 | + int nb = Size(); |
---|
| 5458 | + for (int i = 0; i < nb; i++) |
---|
| 5459 | + { |
---|
| 5460 | + child = (Object3D) get(i); |
---|
| 5461 | + if (child == null) |
---|
| 5462 | + continue; |
---|
| 5463 | + child.RestoreSelectable(); |
---|
| 5464 | + } |
---|
| 5465 | + |
---|
| 5466 | + blockloop = false; |
---|
| 5467 | + } |
---|
| 5468 | + |
---|
5309 | 5469 | boolean IsSelected() |
---|
5310 | 5470 | { |
---|
5311 | 5471 | if (parent == null) |
---|
.. | .. |
---|
5615 | 5775 | } |
---|
5616 | 5776 | } |
---|
5617 | 5777 | |
---|
| 5778 | + void EmbedTextures(boolean embed) |
---|
| 5779 | + { |
---|
| 5780 | + if (blockloop) |
---|
| 5781 | + return; |
---|
| 5782 | + |
---|
| 5783 | + //if (GetTextures() != null) |
---|
| 5784 | + if (embed) |
---|
| 5785 | + CameraPane.EmbedTextures(GetTextures()); |
---|
| 5786 | + else |
---|
| 5787 | + { |
---|
| 5788 | + GetTextures().pigmentdata = null; |
---|
| 5789 | + GetTextures().bumpdata = null; |
---|
| 5790 | + GetTextures().pw = 0; |
---|
| 5791 | + GetTextures().ph = 0; |
---|
| 5792 | + GetTextures().bw = 0; |
---|
| 5793 | + GetTextures().bh = 0; |
---|
| 5794 | + } |
---|
| 5795 | + |
---|
| 5796 | + int nb = Size(); |
---|
| 5797 | + for (int i = 0; i < nb; i++) |
---|
| 5798 | + { |
---|
| 5799 | + Object3D child = (Object3D) get(i); |
---|
| 5800 | + |
---|
| 5801 | + if (child == null) |
---|
| 5802 | + continue; |
---|
| 5803 | + |
---|
| 5804 | + blockloop = true; |
---|
| 5805 | + child.EmbedTextures(embed); |
---|
| 5806 | + blockloop = false; |
---|
| 5807 | + } |
---|
| 5808 | + } |
---|
| 5809 | + |
---|
5618 | 5810 | void draw(iCameraPane display, Object3D /*Composite*/ root, boolean selected, boolean blocked) |
---|
5619 | 5811 | { |
---|
5620 | 5812 | Draw(display, root, selected, blocked); |
---|
.. | .. |
---|
5702 | 5894 | support = support; |
---|
5703 | 5895 | |
---|
5704 | 5896 | //boolean usecalllists = IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null || !link2master); // !(this instanceof cSpring) && !(this instanceof BezierPatch); |
---|
5705 | | - boolean usecalllists = IsLive(); // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch); |
---|
| 5897 | + boolean usecalllists = !IsLive(); // IsStatic() && GetBRep() != null && (!CameraPane.SUPPORT || support == null) && !link2master; // !(this instanceof cSpring) && !(this instanceof BezierPatch); |
---|
5706 | 5898 | |
---|
5707 | 5899 | if (!usecalllists && bRep != null && bRep.displaylist > 0) |
---|
5708 | 5900 | { |
---|
.. | .. |
---|
5723 | 5915 | |
---|
5724 | 5916 | if (!selectmode && //display.DrawMode() != display.SELECTION && |
---|
5725 | 5917 | //(touched || (bRep != null && bRep.displaylist <= 0))) |
---|
5726 | | - (Globals.isLIVE() || touched && (bRep != null && bRep.displaylist <= 0))) |
---|
| 5918 | + (Globals.isLIVE() && Globals.COMPUTESHADOWWHENLIVE || touched && Globals.COMPUTESHADOWWHENLIVE)) // || (bRep != null && bRep.displaylist <= 0))) |
---|
5727 | 5919 | { |
---|
5728 | 5920 | Globals.lighttouched = true; |
---|
5729 | 5921 | } // all panes... |
---|
.. | .. |
---|
5855 | 6047 | if (GetBRep() != null) |
---|
5856 | 6048 | { |
---|
5857 | 6049 | display.NextIndex(); |
---|
| 6050 | + |
---|
5858 | 6051 | // vertex color conflict : gl.glCallList(list); |
---|
5859 | 6052 | DrawNode(display, root, selected); |
---|
5860 | 6053 | if (this instanceof BezierPatch) |
---|
.. | .. |
---|
6315 | 6508 | // dec 2012 |
---|
6316 | 6509 | new Exception().printStackTrace(); |
---|
6317 | 6510 | return; |
---|
| 6511 | + } |
---|
| 6512 | + |
---|
| 6513 | + if (dontselect) |
---|
| 6514 | + { |
---|
| 6515 | + //bRep.GenerateNormalsMINE(); |
---|
6318 | 6516 | } |
---|
6319 | 6517 | |
---|
6320 | 6518 | display.DrawGeometry(bRep, flipV, selectmode); |
---|
.. | .. |
---|
7207 | 7405 | // { |
---|
7208 | 7406 | // CameraPane.Ymax = spoth; |
---|
7209 | 7407 | // } |
---|
7210 | | - info.g.drawArc(boundary.x, boundary.y, |
---|
7211 | | - boundary.width, boundary.height, 0, 360); |
---|
| 7408 | + info.g.drawArc(boundary.x + info.DX, boundary.y + info.DY, |
---|
| 7409 | + (int)(boundary.width * info.W), (int)(boundary.height * info.W), 0, 360); |
---|
7212 | 7410 | //info.g.drawArc(spot.x, spotw, spot.width/2, boundary.height/2, 0, 360); |
---|
7213 | 7411 | // if (CameraPane.Xmin > boundary.x) |
---|
7214 | 7412 | // { |
---|
.. | .. |
---|
7752 | 7950 | editWindow = null; |
---|
7753 | 7951 | } // ? |
---|
7754 | 7952 | } |
---|
| 7953 | + else |
---|
| 7954 | + { |
---|
| 7955 | + //editWindow.closeUI(); |
---|
| 7956 | + } |
---|
7755 | 7957 | } |
---|
7756 | 7958 | |
---|
7757 | 7959 | boolean root; // patch for edit windows |
---|
.. | .. |
---|
7909 | 8111 | } |
---|
7910 | 8112 | |
---|
7911 | 8113 | transient ObjEditor editWindow; |
---|
| 8114 | + transient ObjEditor manipWindow; |
---|
| 8115 | + |
---|
| 8116 | + transient boolean pinned; |
---|
| 8117 | + |
---|
7912 | 8118 | transient ObjectUI objectUI; |
---|
7913 | 8119 | public static int povDepth = 0; |
---|
7914 | 8120 | private static cVector tbMin = new cVector(); |
---|