Martin15135215

Results 19 issues of 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: ![image](https://user-images.githubusercontent.com/110968398/192528433-e9d67514-56e4-44b4-b5a0-dd404d80875d.png) 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: ![image](https://user-images.githubusercontent.com/110968398/198877182-70229aed-ea93-4a70-a916-4d92da2c6e2f.png) however in https://github.com/myoualid/ifc-101-course/tree/main/episode-09/streamlit-ifc-final: ![image](https://user-images.githubusercontent.com/110968398/198877227-8469a8cf-fb1b-4f74-aef4-2c4131407f16.png) 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

bug

When I look for the term Native IFC in DuckDuckGo, the first website is from the OSArch blog post: ![image](https://github.com/brunopostle/ifcmerge/assets/110968398/379bcfd2-d11d-4b92-a1c2-1a52123040fb) In it, I found three authors: ![image](https://github.com/brunopostle/ifcmerge/assets/110968398/48b887fb-aea2-4a12-8bcc-46d69f154037) However, in the...

![image](https://github.com/hgrecco/pint/assets/110968398/9a1ad726-9673-4591-a049-f0d6c0545c8c) 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__ ```