Normand Briere
2019-07-14 bc829f47837b5a001f911542140b0b8e63c2bb0c
Cone.java
....@@ -2,6 +2,7 @@
22
33 class Cone extends Biparam implements java.io.Serializable
44 {
5
+ //static final long serialVersionUID = -679715043452968126L;
56
67 Cone()
78 {
....@@ -314,13 +315,13 @@
314315 return true;
315316 }
316317
317
- void doEditDrag(ClickInfo info)
318
+ void doEditDrag(ClickInfo info, boolean opposite)
318319 {
319320 if (hitSomething == 0)
320321 return;
321322 if (hitSomething == 1)
322323 {
323
- super.doEditDrag(info);
324
+ super.doEditDrag(info, opposite);
324325 return;
325326 }
326327 double deltaR = info.x - startX;