summaryrefslogtreecommitdiff
path: root/src/tesseract/menuitems/GravityMenuItem.java
diff options
context:
space:
mode:
authorSteve <steveb9@u.washington.edu>2011-02-11 20:16:07 +0000
committerSteve <steveb9@u.washington.edu>2011-02-11 20:16:07 +0000
commit37b86863e40dedb3baad91a61ed2d76b2f6b9eba (patch)
treec630ee67ec8515d197a294a3be6b6252de712fac /src/tesseract/menuitems/GravityMenuItem.java
parent45718da7a79143fe77331e99e382498e03f6ec16 (diff)
Added gravity menuItem and change planarPolygon mass to 1
Diffstat (limited to 'src/tesseract/menuitems/GravityMenuItem.java')
-rw-r--r--src/tesseract/menuitems/GravityMenuItem.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/tesseract/menuitems/GravityMenuItem.java b/src/tesseract/menuitems/GravityMenuItem.java
new file mode 100644
index 0000000..62ee26e
--- /dev/null
+++ b/src/tesseract/menuitems/GravityMenuItem.java
@@ -0,0 +1,44 @@
+package tesseract.menuitems;
+
+import java.awt.Color;
+import java.awt.event.ActionEvent;
+
+import javax.swing.JColorChooser;
+import javax.swing.JOptionPane;
+import javax.vecmath.Color3f;
+import javax.vecmath.Vector3f;
+
+import tesseract.World;
+import tesseract.forces.Gravity;
+import tesseract.objects.PlanarPolygon;
+
+/**
+ * Gravity Menu Item.
+ *
+ * @author Steve Bradshaw
+ */
+public class GravityMenuItem extends TesseractMenuItem {
+
+ /**
+ * Serial ID.
+ */
+ private static final long serialVersionUID = 1L;
+
+ /**
+ * Constructor for the menu item.
+ *
+ * @param theWorld The world into which we add.
+ */
+ public GravityMenuItem(final World theWorld) {
+ super(theWorld, "Gravity");
+ }
+
+ /**
+ * Action handler.
+ *
+ * @param arg0 Unused event info.
+ */
+ public void actionPerformed(final ActionEvent arg0) {
+ myWorld.addForce(new Gravity());
+ }
+}