401402403404405406407
/** * @see RectangleVisitor#RectangleVisitor(double, double, double, double) */ public final ShapeBuilder drawRect(double x, double y, double width, double height) { return append(new RectangleVisitor(x, y, width, height)); }
408409410411412413414
/** * @see RectangleVisitor#RectangleVisitor(Vector2, double, double) */ public final ShapeBuilder drawRect(Vector2 position, double width, double height) { return append(new RectangleVisitor(position, width, height)); }
415416417418419420421
/** * @see RectangleVisitor#RectangleVisitor(Rectangle) */ public final ShapeBuilder drawRect(Rectangle rectangle) { return append(new RectangleVisitor(rectangle)); }
357358359360361362363
364365366367368369370
371372373374375376377
399400401402403404405
406407408409410411412
413414415416417418419