-
Beta Was this translation helpful? Give feedback.
Answered by
marcomusy
Jan 10, 2024
Replies: 1 comment
-
Thanks - I just fixed it in the master. from vedo import *
img = Image(dataurl+"images/dog.jpg").alpha(0.75)
img1 = img.clone()
img1.scale(0.25)
img1.shift(-100, -100, 100)
show(img, img1, axes=1).close()
img = Image(dataurl+"images/dog.jpg").alpha(0.75)
img1 = img.clone()
img1.scale(0.25)
img2 = img1.clone()
img2.shift(-100, -100, 100)
show(img, img2, axes=1).close() |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
marcomusy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks - I just fixed it in the master.