icedcoffeeee

Results 12 comments of icedcoffeeee

Just to add, there was some discussion of implementing these as plugins rather than in the main library, which allows for further flexibility of the mobject. But I'm not for...

Another idea for this `Text` refactor: in regards to fixing `AddTextWordByWord`, maybe indexing a `Text` mobject should return each word separately?

> I thought no one would want to use it... I'd very much prefer to have one html housing all, rather than fragments > Maybe it would make sense to...

This sounds like a good addition, I'll try to implement it some time soon.

> So I'm currently trying to implement a homogeneous magnetic field. However, I can't get it to work. And basically my question is: Is it even possible to create a...

If im not mistaken, it may have something to do with the fact that numpy arrays are not hashable. ```py >>> from functools import cache >>> cache(lambda i:i)(np.array([1,2,3])) Traceback (most...

Sorry for bumping, currently facing the same issue. Any work arounds?

The `GRAVITY` attribute can be set like so: ```py class FirstScene(SpaceScene): GRAVITY = (0, 0) def construct(self): c1 = Circle(color="red").shift(2 * LEFT) c2 = Circle(color="blue").shift(RIGHT) self.make_rigid_body(c1, c2) c1.body.velocity = (1,...

Interesting, I can't reproduce this. Can you provide your manim version and OS information? Just for clarity: can you confirm you've done the following steps: 1. The python file only...