444445446447448449450
/** * Clockwise rotation. * @see RotateVisitor#RotateVisitor(double) */ public final ShapeBuilder rotate(double angle) { return append(new RotateVisitor(angle)); }
452453454455456457458
/** * Counter-clockwise rotation. * @see RotateVisitor#RotateVisitor(double) */ public final ShapeBuilder rotateCcw(double angle) { return append(new RotateVisitor(-angle)); }
400401402403404405406
408409410411412413414
301302303304305306307
309310311312313314315
442443444445446447448
450451452453454455456