Increases or decreases the size of a shape by expanding and contracting vertices. Objects always scale from their relative origin to the coordinate system. Scale values are specified as decimal percentages. For example, the function call scale(2.0) increases the dimension of a shape by 200%.<
(float s)
| 12926 | * @see PGraphics#rotateZ(float) |
| 12927 | */ |
| 12928 | public void scale(float s) { |
| 12929 | if (recorder != null) recorder.scale(s); |
| 12930 | g.scale(s); |
| 12931 | } |
| 12932 | |
| 12933 | |
| 12934 | /** |