Home | History | Annotate | Download | only in geom

Lines Matching refs:getX

168             this.x = (float)bounds.getX();
177 public double getX() {
347 this.x = bounds.getX();
356 public double getX() {
541 this.x = a.getX() + width;
794 return new Point2D.Double(getX() + (1.0 + Math.cos(a)) * getWidth() / 2.0, getY()
805 return new Point2D.Double(getX() + (1.0 + Math.cos(a)) * getWidth() / 2.0, getY()
811 return makeBounds(getX(), getY(), getWidth(), getHeight());
813 double rx1 = getX();
821 double bx1 = containsAngle(180.0) ? rx1 : Math.min(p1.getX(), p2.getX());
823 double bx2 = containsAngle(0.0) ? rx2 : Math.max(p1.getX(), p2.getX());
858 setArc(point.getX(), point.getY(), size.getWidth(), size.getHeight(), start, extent, type);
875 setArc(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight(), start, extent, type);
885 setArc(arc.getX(), arc.getY(), arc.getWidth(), arc.getHeight(), arc.getAngleStart(), arc
935 double a1 = -Math.atan2(p1.getY() - p2.getY(), p1.getX() - p2.getX());
936 double a2 = -Math.atan2(p3.getY() - p2.getY(), p3.getX() - p2.getX());
940 double x = p2.getX() + d * Math.cos(am);
960 double angle = Math.atan2(point.getY() - getCenterY(), point.getX() - getCenterX());
1010 setAngles(p1.getX(), p1.getY(), p2.getX(), p2.getY());
1054 double nx = (px - getX()) / getWidth() - 0.5;
1104 return !r.intersectsLine(cx, cy, p1.getX(), p1.getY())
1105 && !r.intersectsLine(cx, cy, p2.getX(), p2.getY());
1110 return contains(rect.getX(), rect.getY(), rect.getWidth(), rect.getHeight());
1137 if (r.intersectsLine(p1.getX(), p1.getY(), cx, cy)
1138 || r.intersectsLine(p2.getX(), p2.getY(), cx, cy)) {
1142 if (r.intersectsLine(p1.getX(), p1.getY(), p2.getX(), p2.getY())) {