diff --git a/examples/three_d.py b/examples/three_d.py index 2e15d3c..8a33f34 100644 --- a/examples/three_d.py +++ b/examples/three_d.py @@ -23,7 +23,7 @@ async def construct( )) ) self.add(dodec) - self.prepare(self.camera.animate(infinite=True).rotate(0.5 * DOWN)) + self.prepare(self.camera.animate(infinite=True).rotate_about_origin(0.5 * DOWN)) text = Text("Dodecahedron") await self.play(Parallel(*( diff --git a/examples/write_animation.py b/examples/write_animation.py index 4954c6b..b5e21c6 100644 --- a/examples/write_animation.py +++ b/examples/write_animation.py @@ -11,6 +11,7 @@ async def construct( self: Self ) -> None: text = Text("Hello").scale(1.5) + text.move_to(self.camera.frame, DR) await self.play(Parallel(*( Series( Create(stroke := glyph.build_stroke()),