X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=src%2FMain.java;h=7830f5c87d1422050bcae5c75f4720f3f5b73a60;hb=a3aad0bab8b523ead43362277b5d04a14e178cfb;hp=da616df66d77859ac43a00062c2a79f81e6eacc3;hpb=c257689076da7472ec2aff9d5d940647715ecf08;p=anneal.git diff --git a/src/Main.java b/src/Main.java index da616df..7830f5c 100644 --- a/src/Main.java +++ b/src/Main.java @@ -3,8 +3,65 @@ import java.awt.event.*; import javax.swing.*; import javax.media.opengl.*; import javax.media.opengl.glu.*; +import java.util.*; -public class Main implements GLEventListener { +// FEATURE: check google's 3D warehouse for sample shapes + +public class Main implements GLEventListener, MouseListener, MouseMotionListener, KeyListener, MouseWheelListener { + + boolean alt = false; + boolean shift = false; + boolean control = false; + + public void mouseWheelMoved(MouseWheelEvent e) { + tz -= e.getWheelRotation() ; + } + + public void keyTyped(KeyEvent e) { } + public void keyPressed(KeyEvent e) { + switch(e.getKeyCode()) { + case KeyEvent.VK_CONTROL: control = true; break; + case KeyEvent.VK_ALT: alt = true; break; + case KeyEvent.VK_SHIFT: shift = true; break; + } + } + public void keyReleased(KeyEvent e) { + switch(e.getKeyCode()) { + case KeyEvent.VK_CONTROL: control = false; break; + case KeyEvent.VK_ALT: alt = false; break; + case KeyEvent.VK_SHIFT: shift = false; break; + } + } + + public void mouseClicked(MouseEvent e) { } + public void mouseEntered(MouseEvent e) { } + public void mouseExited(MouseEvent e) { } + public void mousePressed(MouseEvent e) { } + public void mouseReleased(MouseEvent e) { } + + int mousex; + int mousey; + public void mouseMoved(MouseEvent e) { + mousex = e.getX(); + mousey = e.getY(); + } + + float tx = 0; + float ty = 0; + float tz = 0; + float anglex = 0; + float angley = 0; + public void mouseDragged(MouseEvent e) { + if (shift) { + tx += (mousex - e.getX())/(float)20; + ty += (mousey - e.getY())/(float)20; + } else { + anglex -= mousex - e.getX(); + angley += mousey - e.getY(); + } + mousex = e.getX(); + mousey = e.getY(); + } private Geom geom = new Geom(); @@ -55,17 +112,6 @@ public class Main implements GLEventListener { geom.new V( 0, 0, -0.2), }; - for(Geom.V v : translations) { - for(Geom.P p1 : points) { - for(Geom.P p2 : points) { - if (p1.plus(v).minus(p2).mag() < Geom.EPSILON) { - System.out.println("bind " + p1 + " to " + p2); - p1.bind(p2); - } - } - } - } - // top geom.newT(ltf, mtf, mtn); geom.newT(mtn, ltn, ltf); @@ -98,6 +144,57 @@ public class Main implements GLEventListener { geom.newT(rtf, mtf, rbf); geom.newT(rbf, mtf, mbf); + for(Geom.V v : translations) { + for(Geom.T t1 : geom) { + for(Geom.T t2 : geom) { + if (t1==t2) continue; + + if ((t1.p1().plus(v).minus(t2.p1()).mag() < Geom.EPSILON) && + (t1.p2().plus(v).minus(t2.p3()).mag() < Geom.EPSILON) && + (t1.p3().plus(v).minus(t2.p2()).mag() < Geom.EPSILON)) { + t1.e1().bind(t2.e3().pair); + t1.e2().bind(t2.e2().pair); + t1.e3().bind(t2.e1().pair); + } + if ((t1.p2().plus(v).minus(t2.p1()).mag() < Geom.EPSILON) && + (t1.p3().plus(v).minus(t2.p3()).mag() < Geom.EPSILON) && + (t1.p1().plus(v).minus(t2.p2()).mag() < Geom.EPSILON)) { + t1.e2().bind(t2.e3().pair); + t1.e3().bind(t2.e2().pair); + t1.e1().bind(t2.e1().pair); + } + if ((t1.p3().plus(v).minus(t2.p1()).mag() < Geom.EPSILON) && + (t1.p1().plus(v).minus(t2.p3()).mag() < Geom.EPSILON) && + (t1.p2().plus(v).minus(t2.p2()).mag() < Geom.EPSILON)) { + t1.e3().bind(t2.e3().pair); + t1.e1().bind(t2.e2().pair); + t1.e2().bind(t2.e1().pair); + } + } + } + } + + //Geom.P mid = geom.newE(ltf, lbn).shatter(); + + //tx.e2.shatter(); + //tx.e3.shatter(); + + //mid.move(geom.new V((float)-0.05,0,0)); + + //mtf.move(geom.new V(0, (float)-0.05, (float)0.05)); + + + for(Geom.T t : geom) { + t.e1().dobind(); + t.e2().dobind(); + t.e3().dobind(); + } + + for(int i=0; i<100; i++) { + rand(); + } + + /* for(int i=0; i