Alexandre Boisselet
Alexandre Boisselet
> Just generating the file _jupyter_notebook_config.py_ with the modification mentioned above and leaving it inside the folder .jupyter does not work for me. > > `"websocket_max_message_size": 100 * 1024 *...
Hi @jasongrout, what about the "chunks" approach used by @mariobuikhuizen in ipyvuetify in https://github.com/mariobuikhuizen/ipyvuetify/blob/master/ipyvuetify/extra/file_input.py would there be a way to implement it directly in ipywidgets? also open issue : mariobuikhuizen/ipyvuetify#50
@OrtnerMichael please have a look when you have spare time. Feedback and change suggestions are welcome ;)
```python import magpylib as magpy import numpy as np import plotly.graph_objects as go from magpylib.graphics.model3d import make_Cuboid cube_mag = (0, 0, 10) th_mag = (0, 0, 10) dim = (0.8,...
```python import magpylib as magpy import numpy as np import panel as pn import param import plotly.graph_objects as go from magpylib._src.obj_classes.class_BaseGeo import BaseGeo from magpylib._src.style import MagnetStyle pn.extension("plotly") def accordion_tree(*objs,...
```python import magpylib as magpy import numpy as np import panel as pn import param import plotly.graph_objects as go from magpylib._src.defaults.defaults_classes import BaseStyle, MagnetStyle from magpylib._src.defaults.defaults_utility import MagicParameterized from magpylib._src.obj_classes.class_BaseGeo...
We should implement a module (at package top level ?) to regroup functions that are not part of the core implementations, but have some recurring usefulness. So far could implement:...
This how the interpolation function could look like. It is so far explicitly written in the `CustomSource` example in `docs_v4` ```python def interpolate_field(data, method="linear", bounds_error=False, fill_value=np.nan): """ Creates a 3d-vector...
Do we really need this? It is not like we actually removed the `magnetization` parameter from the magnets parameterization. Not sure it is that trivial to make an alias for...
Hi @OrtnerMichael, I don't see any problem here and I don't understand your confusion. The two code blocks do basically the same. Just what you assign to `cube` differs. When...