diff options
author | jada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2005-10-19 23:41:54 +0000 |
---|---|---|
committer | jada <jada@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2005-10-19 23:41:54 +0000 |
commit | 89e00ae88793b815256cf1ec371d4dd4000f020a (patch) | |
tree | 98b80e57156c260cfcf9fdc80a3c01d5e47efecb | |
parent | c3fb39ab158a5bf1a8eba215398a871f9e94aef5 (diff) |
Update PickTest.java to use the new pickfast utility.
-rw-r--r-- | src/PickTest/PickTest.java | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/PickTest/PickTest.java b/src/PickTest/PickTest.java index b4817f7..88feef7 100644 --- a/src/PickTest/PickTest.java +++ b/src/PickTest/PickTest.java @@ -42,8 +42,8 @@ * $State$ */ -import com.sun.j3d.utils.picking.behaviors.*; -import com.sun.j3d.utils.picking.*; +import com.sun.j3d.utils.pickfast.behaviors.*; +import com.sun.j3d.utils.pickfast.*; import java.applet.Applet; import java.awt.BorderLayout; @@ -243,7 +243,7 @@ public class PickTest extends Applet implements ActionListener { morph = new Morph((GeometryArray[]) geomMorph, appearance); morph.setCapability(Morph.ALLOW_WEIGHTS_READ); morph.setCapability(Morph.ALLOW_WEIGHTS_WRITE); - PickTool.setCapabilities(morph, PickTool.INTERSECT_FULL); + //PickTool.setCapabilities(morph, PickTool.INTERSECT_FULL); spinTg.addChild(morph); } else { // Geometry picking require this to be set. @@ -263,7 +263,7 @@ public class PickTest extends Applet implements ActionListener { shape.setCapability(Shape3D.ALLOW_APPEARANCE_READ); shape.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE); shape.setCapability(Shape3D.ENABLE_PICK_REPORTING); - PickTool.setCapabilities(shape, PickTool.INTERSECT_FULL); + //PickTool.setCapabilities(shape, PickTool.INTERSECT_FULL); spinTg.addChild(shape); } @@ -294,7 +294,7 @@ public class PickTest extends Applet implements ActionListener { String pickModeString = new String("Pick Mode"); String boundsString = new String("BOUNDS"); String geometryString = new String("GEOMETRY"); - String geometryIntersectString = new String("GEOMETRY_INTERSECT_INFO"); + //String geometryIntersectString = new String("GEOMETRY_INTERSECT_INFO"); String toleranceString = new String("Pick Tolerance"); String tolerance0String = new String("0"); String tolerance2String = new String("2"); @@ -327,7 +327,7 @@ public class PickTest extends Applet implements ActionListener { bg = new ButtonGroup(); addRadioButton(panel, bg, pickModeString, boundsString, true); addRadioButton(panel, bg, pickModeString, geometryString, false); - addRadioButton(panel, bg, pickModeString, geometryIntersectString, false); + //addRadioButton(panel, bg, pickModeString, geometryIntersectString, false); panel.add(new JLabel(toleranceString)); bg = new ButtonGroup(); @@ -349,11 +349,11 @@ public class PickTest extends Applet implements ActionListener { //System.out.println("action: name = " + name + " value = " + value); if (name == pickModeString) { if (value == boundsString) { - setPickMode(PickCanvas.BOUNDS); + setPickMode(PickInfo.PICK_BOUNDS); } else if (value == geometryString) { - setPickMode(PickCanvas.GEOMETRY); - } else if (value == geometryIntersectString) { - setPickMode(PickCanvas.GEOMETRY_INTERSECT_INFO); + setPickMode(PickInfo.PICK_GEOMETRY); + //} else if (value == geometryIntersectString) { + //setPickMode(PickInfo.PICK_GEOMETRY); } else { System.out.println("Unknown pick mode: " + value); } |