Warning: session_start(): open(/var/lib/php/sessions/sess_3bng5nt6kmf7pfjlbm7lh5f5cu, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static int drawArrowBetweenRects_headSize = 5;
static int drawArrowBetweenRects_width = 2;
static void drawArrowBetweenRects(Graphics2D g, Rect r1, Rect r2, Color color) {
// TODO
Pt p1 = pt(r1.x+r1.w/2, r1.y-1);
Pt p2 = pt(r2.x+r2.w/2, r2.y+r2.h);
int x1 = p1.x, y1 = p1.y, x2 = p2.x, y2 = p2.y;
double dist = pointDistance(x1, y1, x2, y2);
double arrowLen = drawThoughtArrow_size*drawArrowHead_length-1;
Pt v = p1, p = p2;
g.setColor(color);
g.setStroke(new BasicStroke(drawArrowBetweenRects_width));
g.draw(new Line2D.Double(x1, y1, v.x, v.y));
drawArrowHead(g, x1, y1, p.x, p.y, drawArrowBetweenRects_headSize);
}