Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a picture in the scene, the picture position changed incorrectly when the camera was moving #3646

Open
tianmaoyu opened this issue Mar 19, 2024 · 0 comments

Comments

@tianmaoyu
Copy link

Description of bug / unexpected behavior

Add a picture in the scene, the picture position changed incorrectly when the camera was moving

You can watch my video

class AddImage(ThreeDScene):
    def construct(self):
        axes = ThreeDAxes()
        img = ImageMobject("images/test.jpg")
        img.shift(UP * 3 + RIGHT * 3)
        center= img.get_center()
        print(center)
        self.add(axes, img)
        self.move_camera(phi=85 * DEGREES, theta=30 * DEGREES, frame_center=np.array([-3, 3, 0]), run_time=3)
        
with tempconfig({"preview": True,  "quality": "low_quality", "renderer": "cairo"}):
    AddImage().render()
AddImage.mp4

test

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: 🆕 New
Development

No branches or pull requests

1 participant