Martin15135215
Martin15135215
for me, it was hard to find how to get header and footer right -> so this expended example would surely help other people
for IFC VirtuelElement CLEARANCE see https://github.com/buildingSMART/IFC4.3.x-development/issues/536
see https://github.com/buildingSMART/IFC4.3.x-development/issues/536
For http://ifc43-docs.standards.buildingsmart.org/IFC/RELEASE/IFC4x3/HTML/lexical/IfcVirtualElementTypeEnum.htm, i thing it's important to also mention as a additional example [Structure gauge](https://en.wikipedia.org/wiki/Structure_gauge) here, see image below:  Because for me it was not clear that IfcVirtualElement with...
so i have this little ifc file here -> https://github.com/Martin15135215/git_ifc_test/blob/main/test_two_cube_wall_4d.ifc when i open it in BlenderBIM, the ifctask are recognized:  however in https://github.com/myoualid/ifc-101-course/tree/main/episode-09/streamlit-ifc-final:  where lies the problem? in...
https://github.com/fastai/nbdev/blob/96deb7a03bf2cf79a04e1878f67ce099e434e97f/setup.py#L5-L7 This is a friendly reminder, to tackle this in the future. --- https://setuptools.pypa.io/en/latest/pkg_resources.html Use of pkg_resources is deprecated in favor of [importlib.resources](https://docs.python.org/3.11/library/importlib.resources.html#module-importlib.resources), [importlib.metadata](https://docs.python.org/3.11/library/importlib.metadata.html#module-importlib.metadata) and their backports ([importlib_resources](https://pypi.org/project/importlib_resources), [importlib_metadata](https://pypi.org/project/importlib_metadata)). Some...
When I used the command nbdev_new it created a settings.ini with `license = apache2.`, How can I change it to GPL-3.0-only ? And why is the[ SPDX short identifier](https://spdx.org/licenses/) not...
https://github.com/ritchie46/anaStruct/blob/65996bdb5253549e96b70b2f1f3d9b039f7e7446/README.md?plain=1#L152
When I look for the term Native IFC in DuckDuckGo, the first website is from the OSArch blog post:  In it, I found three authors:  However, in the...
 In the latex string the matrix is empty. ```python import pint import numpy as np np.array([[2,1],[3,1]]) ureg = pint.UnitRegistry() np.array([[2,1],[3,1]]) * ureg.meter f"{np.array([[2,1],[3,1]]) * ureg.meter:L}" pint.__version__ ```