javascript - General: Does Kinetic.js provide painting of specific pixels? -
this general question kinetic.js developer processing/processing.js background.
when using processing.js, routinely set color value of specific pixel on canvas.
set(x, y, color);
very easy can see. in situation, each y-value, value x may have different color value (or not @ all).
when @ kinetic.js, see object , closest can find drawing pixel 1x1 kinetic.rect. seems intensive if have, example, 1,000 kinetic.rect objects per y-value.
in addition, not need each pixel "object", per se. though, other benefits of kinetic.js, such layering , better transition , animation control.
does kinetic.js provide means more direct pixel painting , manipulation, ala processing.js?
thank you.