How does one use skewX() or is it broken?
in
Programming Questions
•
3 years ago
- size(100, 100, P2D);
- translate(width/4, height/4);
- skewX(PI/4.0);
- rect(0, 0, 30, 30);
And got this error message:-
skewX(), or this particular variation of it, is not available with this renderer.
This is the reference example?
size(100, 100, P2D);
translate(width/4, height/4);
skewX(PI/4.0);
rect(0, 0, 30, 30);
1
