Eddie Ruiz

Results 8 comments of Eddie Ruiz

I may take a stab at this one, if no one objects.

I have been doing some digging when I have the chance, and it seems if you remove and replace the ticks and numbers after adding the tip places them in...

Looking into the[``TipableVMobject``](https://github.com/ManimCommunity/manim/blob/89d5ed4398dcc355c3e39f9fded77fcccee15f4f/manim/mobject/geometry/arc.py#L73C7-L73C22) class, the end of the number line should be at the base of the tip, but is instead being set to the end of the tip when...

Ok, I think I got it! The issue was with the way the ``TipableVMobject`` defined ``get_end`` (and by extension ``get_start``). It was using the tip's ``get_end`` method, which doesn't actually...

Ok, got the tick mark appearing the same after adding a tip after the fact as well as during creation. ![nlineScaling_ManimCE_v0 18 1](https://github.com/ManimCommunity/manim/assets/6577827/1161b231-404c-4101-b008-374b53ca30de) And with the code supplied by @uwezi...

There's an issue now where the expected values in several of the tests (the ones that depend on ``NumberLine`` or classes that implement ``NumberLine``, e.g., ``Axes`` don't match the new...

I think one possible way forward is to have an input parameter that control whether the arrow tip isn't create insides or outside of the end of the line. The...

So I did some ``timeit`` tests with the following function definitions: ```python import itertools # The original function def loop_func(bases, powers): positive = [] negative = [] for base, power...