We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Quick question -
I know if I have a PImage "Shape" and I try to make a copy of Shape by saying
PImage copyShape = Shape;
I'll only create a reference to Shape.
How do I make a separate copy?
Thanks
@CantSayIave===
PImage copyShape = shape.get();
Thanks, that's great
Answers
@CantSayIave===
PImage copyShape = shape.get();
Thanks, that's great