How do I duplicate a single entry in a graph? For example, I’ve inserted an image, set the height/width/center, and now just want to duplicate it so the image is there twice. Or I make a point, adjust the settings to how I want them, and then want to duplicate it a few times so I can just change the y-values.
I imagine there’s a simple way to copy/paste, but I can’t figure it out. I’d appreciate any help!
1 Like
There’s no way to copy and paste easily, but you can use a list of points for a single image’s center:
[(2,4),(-3,5)]
You can even use functions, like if you wanted the path of a ball along a parabola.
X=[0,1,...10]
f(x)=-(x-5)^2+100
#in image center
(X,f(X))
1 Like
You can do this by setting the center of the image to a list.
Something like this will buy you as many copies as you wish for free using just one source image:
3 Likes
so cool! thank you! I didn’t realize that I could make multiple centers.
You could also make lists for the other parameters as well, just need to be the same number of elements as your center list.