X-Git-Url: http://git.megacz.com/?p=anneal.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fqfat%2Fbind%2FBindingGroup.java;h=501fb813c0b71a95a0c916e6f93a305981709505;hp=270bc78fb0bcee383ca5561b859c40691d297a16;hb=d52f92b29c1987b5734c7183a9c01b5660f86482;hpb=60020b251c2dcb17ffeda8b1885fdce19f72c608 diff --git a/src/edu/berkeley/qfat/bind/BindingGroup.java b/src/edu/berkeley/qfat/bind/BindingGroup.java index 270bc78..501fb81 100644 --- a/src/edu/berkeley/qfat/bind/BindingGroup.java +++ b/src/edu/berkeley/qfat/bind/BindingGroup.java @@ -1,6 +1,5 @@ package edu.berkeley.qfat.bind; import edu.berkeley.qfat.geom.*; -import javax.media.opengl.*; import java.util.*; /** @@ -10,18 +9,27 @@ import java.util.*; */ class BindingGroup implements Iterable { + /** the arbitrarily-chosen master of the binding group */ private T master = null; - private AffineConstraint constraint = new AffineConstraint.All(); + + /** the affine constraint, in master coordinates, of this binding group */ + private AffineConstraint constraint = AffineConstraint.ALL; + + /** + * For each member of the binding group, the matrix which must be + * multiplied by the master to get the member's position + */ private HashMap matrices = new HashMap(); - public BindingGroup(T master) { + BindingGroup(T master) { this.master = master; matrices.put(master, Matrix.ONE); } + /** the size of this binding group */ int size() { return matrices.size(); } - /** merge another binding group with this one */ + /** merge another binding group into this one */ void merge(BindingGroup bg, Matrix m, float epsilon) { if (bg==this) { if (m.equalsModuloEpsilon(Matrix.ONE, epsilon)) return; @@ -30,8 +38,8 @@ class BindingGroup implements Iterable { return; } - for(HasBindingGroup hbg : bg.matrices.keySet()) { - matrices.put((T)hbg, bg.matrices.get(hbg).times(m)); + for(HasBindingGroup hbg : bg) { + matrices.put((T)hbg, bg.getMatrix((T)hbg).times(m)); hbg.bindingGroup = this; } @@ -40,28 +48,28 @@ class BindingGroup implements Iterable { constraint = constraint.intersect(ac, epsilon); bg.master = null; - for(HasBindingGroup hbg : bg.matrices.keySet()) - hbg.bindingGroupChanged(); + for(HasBindingGroup hbg : bg) hbg.bindingGroupChanged(); bg.matrices.clear(); + bg.matrices = null; } - public Matrix getMatrix(T t) { return matrices.get(t); } + Matrix getMatrix(T t) { return matrices.get(t); } public Iterator iterator() { return matrices.keySet().iterator(); } /** t1 = getMatrix(t1, t2) * t2 */ - public Matrix getMatrix(T t1, T t2) { + Matrix getMatrix(T t1, T t2) { // t1 = getMatrix(t1) * master // getMatrix(t2)^-1 * t2 = master // t1 = getMatrix(t1) * getMatrix(t2)^-1 * t2 return getMatrix(t1).times(getMatrix(t2).inverse()); } - public AffineConstraint getConstraint(T t) { + AffineConstraint getAffineConstraint(T t) { return constraint.multiply(matrices.get(t)); } - public void unbind(T trem) { + void unbind(T trem) { if (trem != master) { matrices.remove(trem); return; @@ -74,7 +82,11 @@ class BindingGroup implements Iterable { Iterator it = iterator(); T newmaster = it.next(); if (newmaster==trem) newmaster = it.next(); - if (newmaster==trem) throw new Error(); + if (newmaster==trem) throw new Error("impossible"); + + // FIXME: is this correct? + constraint = constraint.multiply(getMatrix(newmaster, master)); + HashMap newmatrices = new HashMap(); for(T t : matrices.keySet()) { if (t==trem) continue; @@ -84,7 +96,7 @@ class BindingGroup implements Iterable { matrices = newmatrices; } - public boolean contains(HasBindingGroup t) { + boolean contains(HasBindingGroup t) { return matrices.get((T)t) != null; } }