Lines Matching refs:other
76 public int compareTo(Edge other, double yrange[]) {
77 if (other == lastEdge && yrange[0] < lastLimit) {
83 if (this == other.lastEdge && yrange[0] < other.lastLimit) {
84 if (yrange[1] > other.lastLimit) {
85 yrange[1] = other.lastLimit;
87 return 0-other.lastResult;
90 int ret = curve.compareTo(other.curve, yrange);
95 System.identityHashCode(other))
96 ? this+" to "+other
97 : other+" to "+this)+
101 lastEdge = other;