Normand Briere
2019-06-25 d2f456cf5280f59425084532bd2397ec625f7577
CameraPane.java
....@@ -10481,6 +10481,7 @@
1048110481 ANTIALIAS = 0;
1048210482 //System.out.println("RESTART");
1048310483 AAtimer.restart();
10484
+ Globals.TIMERRUNNING = true;
1048410485 }
1048510486 }
1048610487 }
....@@ -11459,7 +11460,7 @@
1145911460
1146011461 static boolean zoomonce = false;
1146111462
11462
- void CreateSelectedPoint()
11463
+ static void CreateSelectedPoint()
1146311464 {
1146411465 if (selectedpoint == null)
1146511466 {
....@@ -13840,6 +13841,7 @@
1384013841 else
1384113842 if (evt.getSource() == AAtimer)
1384213843 {
13844
+ Globals.TIMERRUNNING = false;
1384313845 if (mouseDown)
1384413846 {
1384513847 //new Exception().printStackTrace();
....@@ -13914,6 +13916,7 @@
1391413916 return;
1391513917
1391613918 AAtimer.restart(); //
13919
+ Globals.TIMERRUNNING = true;
1391713920
1391813921 // waslive = LIVE;
1391913922 // LIVE = false;
....@@ -14377,7 +14380,8 @@
1437714380 info.camera = renderCamera;
1437814381 info.x = x;
1437914382 info.y = y;
14380
- object.editWindow.copy.doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
14383
+ object.GetWindow().copy
14384
+ .doEditDrag(info, (modifiers & MouseEvent.BUTTON3_MASK) != 0);
1438114385 } else
1438214386 {
1438314387 if (x < startX)
....@@ -14541,9 +14545,9 @@
1454114545 ci.camera = renderCamera;
1454214546 if (!isRenderer)
1454314547 {
14544
- ObjEditor editWindow = object.editWindow;
14545
- Object3D copy = editWindow.copy;
14546
- if (copy.doEditClick(ci, 0))
14548
+ //ObjEditor editWindow = object.editWindow;
14549
+ //Object3D copy = editWindow.copy;
14550
+ if (object.doEditClick(ci, 0))
1454714551 {
1454814552 setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR));
1454914553 } else
....@@ -15377,7 +15381,7 @@
1537715381 }
1537815382 */
1537915383
15380
- object.editWindow.EditSelection();
15384
+ object.editWindow.EditSelection(false);
1538115385 }
1538215386
1538315387 void SelectParent()
....@@ -16622,6 +16626,8 @@
1662216626 // System.err.println("view = " + view[8] + " " + view[9] + " " + view[10] + " " + view[11]);
1662316627 // System.err.println("view = " + view[12] + " " + view[13] + " " + view[14] + " " + view[15]);
1662416628
16629
+ CreateSelectedPoint();
16630
+
1662516631 // Will fit the mesh !!!
1662616632 selectedpoint.toParent[0][0] = 0.0001;
1662716633 selectedpoint.toParent[1][1] = 0.0001;