Matthias Arras
Matthias Arras
Same here.
What's the status of the english translation?
Good pointer! `to_compact()` covers the human friendly (conversion to next 10^3 unit), the significant figures not. But works for my purpose for now. The issue with the significant figures is...
> Ok, as an initial point, replacing `dict` with `collections.OrderedDict` as the baseclass of `util.udict` passes all existing tests without further modifications. Extending this to the `dict()` instances created by...
Similar issue here: ```bash [ 87%] Built target lib_Wires /home/ubuntu/python/PyMesh/tools/Triangulation/MMG/Delaunay.cpp: In member function ‘virtual void PyMesh::MMG::Delaunay::run()’: /home/ubuntu/python/PyMesh/tools/Triangulation/MMG/Delaunay.cpp:45:27: error: too few arguments to function ‘int MMG2D_Set_meshSize(MMG5_pMesh, int, int, int, int)’ 45...
Workaround for compiling mmg, modify line 93 of `PyMesh/third_party/mmg/CMakeLists.txt` to ```c SET(CMAKE_C_FLAGS " -Wno-char-subscripts -fcommon ${CMAKE_C_FLAGS}") ``` to force `-fcommon` flag for the compiler.
Just saw this is likely duplicate of https://github.com/PyMesh/PyMesh/issues/255
> That is correct. I‘m working on a django app, which, as explained earlier, encapsulates a physics based model. So here N803 and friends should be off as upper-case conveys...
Awesome! Thanks for picking this one up in no time. On Feb 17, 2023, at 02:59, Charlie Marsh ***@***.***> wrote: Closed #2446 as completed via e081455. —Reply to this email...
I like to bump this one again. ```python import pint time = pint.Quantity(100000,'s') print(time.to_compact()) ``` > 100.0 kilosecond is imho just not very useful or what one would expect as...