Reputation: 103
I am trying to add several multiple shapes in different colours in my HTML canvas using paper.js. Is there a way to do this without having several canvases? Is it possible to draw the shapes within one canvas? Here is what I have: https://jsfiddle.net/8hywopu8/1/
HTML:
<canvas id="bacterium"></canvas>
<canvas id="bacterium"></canvas>
<canvas id="bacterium"></canvas>
<canvas id="bacterium"></canvas>
<canvas id="bacterium"></canvas>
Upvotes: 0
Views: 491
Reputation: 1114
Yes it is possible to draw multiple shapes in one canvas. http://paperjs.org/examples/hit-testing/ is one of the examples.
Upvotes: 1