replicant129
replicant129

Reputation: 103

add multiple different layers in canvas

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

Answers (1)

sapics
sapics

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

Related Questions