Dion Moult
6a2307308c
Fix bug where copying objects with profiles should only share profiles if the profile is named.
2023-01-28 21:51:00 +11:00
Dion Moult
f7af38c863
Fix #2712 .
2023-01-27 12:09:17 +11:00
Andrej730
74477d0051
Window modifier - removed hardcoded mm units
...
Related to #2724
2023-01-26 18:29:58 +05:00
Andrej730
04bdb12e79
Window Modifier - added mullions/transoms, removed relative panel dimensions
2023-01-26 12:30:34 +05:00
Dion Moult
7686e35858
Fix #2697 .
2023-01-25 20:52:43 +11:00
Dion Moult
cb9a7cf5be
Fix #2712 . Handle deletion of rel services buildings.
2023-01-25 17:42:39 +11:00
Andrej730
9f0ad9be3c
Black formatting window modifier
2023-01-25 11:13:41 +05:00
Andrej730
a6271d0936
IFC Window modifier
...
Added IFC Window in object modifiers tab (works similar way to Ifc Stair)
2023-01-25 11:13:41 +05:00
Andrej730
cf6acd5dd6
ShapeBuilder - added 3d rectangles and polylines support
2023-01-25 11:10:20 +05:00
Andrej730
d0cf5f9d0c
Fixed ShapeBuilder bug for mirroring IfcExtrudedAreaSolid
...
Also fixed typo in shape_builder_examples
2023-01-25 11:10:19 +05:00
Dion Moult
2c123fdbfb
Bump IfcOpenShell - mainly to fix geometry caching bug
2023-01-25 16:55:05 +11:00
Sigma Dimensions
a5ca7c540f
remove useless lines and run quality check black
2023-01-20 21:39:24 +01:00
Sigma Dimensions
c9b0a7c3de
Attempt to fix selector bug where retrieving material values gets caught in exception
2023-01-20 21:23:40 +01:00
Sigma Dimensions
78a6532615
ifcopenshell: Improve purging for remove_task usecase
2023-01-20 12:58:11 +01:00
Thomas Krijnen
b41878e960
#2697 take only a single inverse at a time
2023-01-16 21:29:59 +01:00
Vukas Pajic
d9f1cb5525
reassign_class now preserves original STEP ID and GLOBALID - #2701
2023-01-16 13:34:57 +01:00
Dion Moult
6ab912a049
Fix invalid IFC context dimensionality
2023-01-13 22:35:23 +11:00
Thomas Krijnen
a1ac820050
#2685 Recompile rules
2023-01-13 12:12:32 +01:00
Thomas Krijnen
e812a886dc
#2685 also implement __mul__ on express_set
2023-01-13 12:12:32 +01:00
Thomas Krijnen
b759e22875
#2685 assoc material test cases
2023-01-13 12:12:32 +01:00
Dion Moult
ba7741fef5
Fix #2285 . You can now get all the elements in a presentation layer.
2023-01-12 12:28:09 +11:00
Thomas Krijnen
d1a40d129f
#2685 Recompile rules
2023-01-11 13:38:12 +01:00
Thomas Krijnen
791076df2d
invalid escape sequence
2023-01-11 13:20:44 +01:00
Thomas Krijnen
608952a4dd
#2685 WR test cases for local placement / indeterminate
2023-01-11 12:50:30 +01:00
Thomas Krijnen
e64047c511
WR test cases for rigid op / typeof() of simple types
2023-01-11 12:49:47 +01:00
Thomas Krijnen
fc3c6599c7
WR test cases for MLS / usedin()
2023-01-11 12:48:53 +01:00
Thomas Krijnen
2336f299f7
Implement typeof() on simple types
2023-01-11 12:47:40 +01:00
Thomas Krijnen
4a71ab9631
#2685 Don't raise issues on WR evaluating to indeterminate
2023-01-11 12:47:13 +01:00
Dion Moult
ddc0f7e652
Theme improvements to IfcOpenShell docs
2023-01-10 11:43:20 +11:00
Jesusbill
4845d191f4
Minor fixes to docs
2023-01-10 01:06:49 +01:00
Dion Moult
da84cc5925
Add documentation for IfcPatch and all recipes
2023-01-10 10:18:13 +11:00
Dion Moult
c8ba96cde8
Make syntax highlighting explicit in docs
2023-01-10 10:16:28 +11:00
Dion Moult
66e067d1ce
Remove IfcMax from documentation as it's no longer relevant
2023-01-10 06:38:53 +11:00
Dion Moult
9d39760f6f
Add IfcClash to docs
2023-01-10 06:38:53 +11:00
Ryan Schultz
3ce010de77
added IfcCivilElement to entity_to_type_map_4.json
2023-01-09 12:14:11 +11:00
Dion Moult
dd600dd20f
Fix #2024 . Boolean diagram included in IfcOpenShell docs.
2023-01-09 11:50:49 +11:00
Dion Moult
360b9956c0
Fix failing tests from refactor which I really should've done before the release
2023-01-09 11:00:46 +11:00
Andrej730
1888048d4d
Moved ShapeBuilder to separate module #2679
...
Moved ShapeBuilder to separate module - now `mathutils` will be only required if you're actually using ShapeBuilder (related to #2679 )
2023-01-08 19:47:18 +05:00
Andrej730
c29048ecfb
Furniture library bug fixes
2023-01-08 19:47:18 +05:00
Dion Moult
0294c4e02c
Fix #2678 . Critical typo bug meant that units were fixed to metric millimeters.
2023-01-08 12:58:53 +11:00
Dion Moult
3cfcd847cf
Fix #2677 . Docs now generate in a reasonable time and exclude generated IFC modules.
2023-01-08 11:12:54 +11:00
Andrej730
23c7bc3f56
Added ShapeBuilder class and library for non structural assets (
...
`ShapeBuilder` class is used to programmatically create 2d and 3d ifc shapes and representations. It's inspired by the way OpenSCAD language is designed - the goal was to create a readable and easy way to create new shapes. The class can be imported from `ifcopenshell.util.representation` module.
Examples of things created with `ShapeBuilder` can be found in `shape_builder_examples.py` or `generate_furniture_library.py` / `Non_structural_assets_library.ifc`.
Also added ifc library of non structual assets (furniture etc) - `Non_structural_assets_library.ifc`. All assets are using most common dimensions for them - it makes it good for prototyping. Related to https://community.osarch.org/discussion/1192
2023-01-06 16:35:55 +05:00
Dion Moult
f818fc659a
Bundle ifcopenshell for Python 3.11 on PyPI. See #2551 .
2023-01-06 16:37:50 +11:00
Dion Moult
839a00c2a8
Run black on validation, lazy-load _pytest.assertion so that it isn't a hard dependency for non-express rule validation.
2023-01-05 20:54:17 +11:00
Dion Moult
9208781b8f
Bump IfcOpenShell version
2023-01-05 18:38:32 +11:00
Dion Moult
25af42f4cb
Fix circular import of json_logger when doing import ifcopenshell.validate
2023-01-05 18:37:14 +11:00
Dion Moult
d386a884aa
You can now purge properties explicitly instead of setting them to None
2023-01-05 17:37:40 +11:00
Dion Moult
82ac895bbb
Write docs for void API module
2023-01-04 16:10:13 +11:00
Dion Moult
fd8774718e
Write docs for unit API module
2023-01-04 16:10:13 +11:00
Dion Moult
90d4d5afda
Write docs for type API module
2023-01-04 16:10:12 +11:00