Jan-Hendrik Müller

Results 156 comments of Jan-Hendrik Müller

hello @hakonanes ! Thanks for your explanation. What I am looking for is to use `savefig()` with my image and ScaleBar then. The reason I want to do this: I...

Here is a solution I found: 1. Find out display dpi here: https://dpi.lv/ 2. Run this script: ```py import matplotlib.pyplot as plt import numpy as np def export_figure_matplotlib(arr, f_name, dpi=200,...

I would be also in favor of a matplotlib-like behavior, e.g. ```py scn = Scene() d= Dot() scn.add(d) scn.render() ``` That would have the following benefits in my opinion: *...

In general, a great idea! Currently, I think it is a bit confusing if shift is working with only 2 parameters, and move_to still requires 3. ```py class Example(Scene): def...

True, sorry! I got confused, because there is also a `choise` function in numpy. Here is the correct one: https://docs.python.org/3/library/random.html#bookkeeping-functions

> Hi, Can I take this issue? there was already a pull request one month ago here: https://github.com/ManimCommunity/manim/pull/1676 but it seems to be stuck. @RaghavPrabhakar66 : Feel free to review...

I think the main purpose of this feature is to share code references from certain versions of the docs. And yes, on the readthedocs build form the main branch these...

+1 for this idea. I was currently looking at the arguments of `Video` here: https://ipywidgets.readthedocs.io/en/latest/search.html?q=Video but could not find any info, but I discovered the docstings in GitHub search: https://github.com/jupyter-widgets/ipywidgets/blob/e0d41f6f02324596a282bc9e4650fd7ba63c0004/ipywidgets/widgets/widget_media.py#L168

Same question here. I also would like to reduce the flickering, for example in this case: ```python from matplotlib import pyplot as plt from IPython.display import clear_output import numpy as...

`sphinx_copybutton` with an underscore, solved the problem, thanks a lot!🎉🎉🎉 As this was a copy-paste error that also other people might do, is it possible to add a warning like:...