I was disappointed that translate() and rotate() do not affect vertex(). A simple example is at
http://www.khanacademy.org/cs/no-rotating-while-shaping/1351182209 .... Basically the following function "doesn't work":
var myVertex = function(x, y) {
pushMatrix();
translate(x, y);
vertex(0, 0);
popMatrix();
};
Am I being unreasonable or naive, or both?