Warning: session_start(): open(/var/lib/php/sessions/sess_lr4m70k1o0fapcgfemqoplbaq6, 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 void drawLine(BufferedImage image, int x1, int y1, int x2, int y2, Color color) {
drawLine(imageGraphics(image), x1, y1, x2, y2, color);
}
static void drawLine(Graphics2D g, int x1, int y1, int x2, int y2, Color color, double width) {
g.setColor(color);
g.drawLine(x1, y1, x2, y2);
}
static void drawLine(BufferedImage image, Pt a, Pt b, Color color) {
drawLine(imageGraphics(image), a, b, color);
}
static void drawLine(Graphics2D g, Pt a, Pt b, Color color) {
drawLine(g, a.x, a.y, b.x, b.y, color);
}