Dion Moult
66ecb92cc2
Minor UX improvements to library name and Sverchok UI
2023-01-07 12:00:22 +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
Andrej730
74fee24004
Update ifc geometry on sverchok update
2023-01-06 12:23:54 +05:00
Dion Moult
618ecccb7b
Fix #2428 . Document minimum system support.
2023-01-06 17:11:51 +11:00
Dion Moult
4afada48a6
Fix #2440 . Fix #2439 . Describe how to access advanced mode when dealing with large models.
2023-01-06 14:01:42 +11:00
Dion Moult
59451cb90c
Fix #2664 . Package with latest IfcOpenShell build. See #2670 .
2023-01-06 11:16:29 +11:00
Sigma Dimensions
53bf746227
BBIM: Fixes for:
...
- Task Time attributes
- Fix typo animation time calculation
2023-01-05 18:43:50 +01:00
Sigma Dimensions
cd6f995471
BBIM: Disable "Create animation" buttons when no start dates/end dates are given
2023-01-05 18:36:22 +01: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
cb92be2b08
No need to specify SI unit names as they can be derived from the unit type
2023-01-05 17:37:40 +11:00
Sigma Dimensions
f818446e7e
BBIM fix: prevent "guess_all_quantities" operator from showing up on Property Sets
2023-01-04 13:59:00 +01:00
Sigma Dimensions
981b6cd65f
Various 4D improvements:
...
- refactor work schedule visualisation operator
- Fix text handler
- Improve durations UI for task times (proposal to replicate for all durations)
- Simplify durations ( P32H as P4D or P1D8H)
- Implement years/months in various datetime calculations
- Feature to customise animation colors per construction task type
- Feature to add Visual task bars
- Feature to customise Visual task bar material colors
- Move helper functions from blenderbim.bim.module.sequence to ifcopenshell.util.sequence
2023-01-04 02:08:52 +01:00
Massimo Fabbro
bac6c62073
Finish mapping quantities (see #2533 ) ( #2661 )
...
* Finish Qto_SignBaseQuantities
* Finish Qto_RailBaseQuantities
* Finish Qto_PitorialSignQuantities
* Finish Qto_JunctionBoxBaseQuantities
* Finish Qto_ArealStratumBaseQuantities
* Finish Qto_SiteBaseQuantities
* Finish Qto_RoofBaseQuantities
* Finish Qto_RoofBaseQuantities
* Finish Qto_ChimneyBaseQuantities
* Finish Qto_EarthworksCutBaseQuantities
* Finish Qto_KerbBaseQuantities
* Finish Qto_PavementBaseQuantities
* Finish Qto_RampFlightBaseQuantities
* Finish Qto_SurfaceFeatureBaseQuantities
* Finish Qto_StairFlightBaseQuantities
* Finish Qto_ConstructionMaterialResourceBaseQuantities
* Finish Qto_DistributionChamberElementBaseQuantities
* Finish Qto_CourseBaseQuantities
* Finish Qto_RailingBaseQuantities
* Finish Qto_SleeperBaseQuantities
* Finish Qto_TankSurfaceQuantities
* Finish Qto_BuildingElementProxy
* Finish Qto_MemberBaseQuantities
* Finish Qto_BodyGeometryValidation
* Finish Qto_VolumetricStratumBaseQuantities
* Finish Qto_SpatialZoneBaseQuantities
* Finish Qto_ReinforcingElementBaseQuantities
* Finish update calculate all quantities button with new calculating functions
2022-12-30 21:33:18 +01:00
Sigma Dimensions
599c391407
code clean up for sequence module
2022-12-26 22:48:51 +01:00
Sigma Dimensions
1f18c5ab82
features to guess schedule date range and setup default task columns, and code clean up
2022-12-26 18:30:25 +01:00
Sigma Dimensions
5326e21fef
2 Fixes for 1 commit:
...
- Consider all tasks descendants when deriving task earliest or latest dates
2022-12-26 17:18:33 +01:00
Sigma Dimensions
891b49ff6f
BBIM: feature to display total task Assignements
2022-12-26 13:38:54 +01:00
Sigma Dimensions
2ccf25f7eb
Display Scheduled Resource Usage as a property within rersource tree
2022-12-26 07:04:11 +01:00
Sigma Dimensions
082a326e67
Enable displaying number of resources used by a task
2022-12-26 06:16:19 +01:00
Sigma Dimensions
d33a7244a3
Task Output selection improvements - allow recursive nesting and add checkbox to toggle between nested and non-nested
2022-12-26 05:17:56 +01:00
Andrej730
16de2f2e7e
Added mention of sverchok's copyrights
2022-12-23 09:24:26 +05:00
Andrej730
0b6c8fe83e
Added base for ifc sverchok modifier
...
It's located in "Modifiers" section of the properties (the same way as IFC Array or IFC Stair).
It requires Sverchok addon to be enabled (it's lazy importing it when it's needed, so there is no new constant dependency).
What you can now do with it:
1) Add sverchok graphs to this modifier and store simple data from sverchok in IFC ("Update data from sverchok). The "output" node of the sverchok graph has to be type of "Viewer Draw" and it's name should start with "ifcoutput" (no case-sensitive).
2) Import/export json of sverchok graphs.
2022-12-21 20:10:39 +05:00
Andrej730
d11959d303
Removed deprecated angle annotations operator
...
As it's currently completely replace with new more intuitive operator.
2022-12-19 20:13:59 +05:00
Andrej730
2bd5f3bbb3
Fixed annotations angle operator svg rendering bug
...
Fixed bug where the angle was drawn in svg only for the first two edges of the curve.
Now it takes into account all edges - first angle = edge0 + edge1, second angle = edge1 + edge2 etc.
2022-12-19 20:07:29 +05:00
Sigma Dimensions
88c9f15320
fix library import for date utils
2022-12-18 04:34:20 +01:00
Sigma Dimensions
73d3e9589c
BBIM: forgotten commit for "ScheduleDuration" formatting
2022-12-18 03:56:10 +01:00
Sigma Dimensions
84a07c3fdf
fix typo for resource_work calculation
2022-12-18 03:41:13 +01:00
Dion Moult
30dc13f1a7
Add support for loading IFCs with aggregated types
2022-12-17 20:48:05 +11:00
Dion Moult
d2fee728f2
Write documentation for pset_template API module
2022-12-16 11:22:46 +11:00
Dion Moult
241406f676
Consolidate standard "clean environment" instructions in docs
2022-12-14 23:13:01 +11:00
Ryan Schultz
05cd11ae12
Added some troubleshooting measures to determine if another plugin is interfering with BB.
2022-12-13 08:12:21 -06:00
CyrilWaechter
1f87165601
Remove bloat line
2022-12-11 22:46:05 +01:00
CyrilWaechter
a513e1b56a
Remove duplicate line
2022-12-10 19:45:17 +01:00
CyrilWaechter
ec0c8f509e
Move boundary origin to space origin
...
Ensure that boundary origin is same as space origin to assign correct
geometry into IFC.
2022-12-10 19:44:28 +01:00
Ryan Schultz
a23bac6ecb
where to look to see if a dependency has changed.
2022-12-09 10:31:57 -06:00
Andrej730
390f23a30c
Added ReloadSelectedIfcFile operator
...
Added ReloadSelectedIfcFile operator and added it to IFC Quality Control -> IFC Debug, it's useful when you're debugging and doing a lot of iterations on the same file.
2022-12-05 14:59:58 +11:00
Massimo Fabbro
c8ba2b53c9
Mapping quantities (see #2533 ) ( #2627 )
...
* Finish mapping Qto_PileBaseQuantities
* Finish mapping IfcPipeSegmentBaseQuantities
* Finish mapping IfcVehicleBaseQuantities
* Finish mapping Qto_OpeningElementBaseQuantities
* Finish mapping Qto_PlateBaseQuantities
* Finish Qto_MarineFacilityBaseQuantities
* Finish Qto_FacilityPartBaseQuantities
* Finish Qto_ProjectionElementBaseQuantities
* Better syntax
2022-12-02 18:19:43 +01:00
Massimo Fabbro
b05c711fb9
Merge pull request #2619 from maxfb87/mapping_quantities
...
Finish mapping quantities Qto_SpaceBaseQuantities (see #2533 )
2022-11-27 08:17:32 +01:00
CyrilWaechter
eb0322759c
Allow ifcpatch to work with .ifcZIP | .ifcXML
...
Closes #2350
2022-11-26 05:37:00 +01:00
Massimo Fabbro
2540ba3467
Finish mapping quantities Qto_SpaceBaseQuantities
2022-11-25 17:22:13 +01:00
CyrilWaechter
88093728a7
Add IfcSpatialElementType to assignable classes
...
Required for IFC4+ to assign IfcSpaceType and IfcSpatialZoneType
Solves #2615
2022-11-25 15:55:32 +01:00
Andrej730
d88510b919
Added new angle annotations operator
...
New operator should be more intuitive to work with. I kept the old one too for now.
2022-11-24 12:05:54 +06:00
CyrilWaechter
ae0f2a9de6
IfcZone : Allow basic selection/deletion/creation
2022-11-20 17:35:27 +01:00
Massimo Fabbro
eb23372fd0
Finish mapping Qto_CoveringBaseQuantities
2022-11-19 21:44:51 +01:00
Massimo Fabbro
286e9dfda9
Merge pull request #2605 from maxfb87/mapping_quantities
...
Mapping quantities (see #2533 )
2022-11-19 17:28:29 +01:00
Ryan Schultz
caa4445eb0
Added diffuse_color inside IFC Style panel
2022-11-18 12:36:10 +11:00
Andrej730
f850bd5741
documented create_simple_2dcurve()
2022-11-17 12:03:28 +06:00
Massimo Fabbro
8c5883ffaa
Finish mapping Qto_DoorBaseQuantities and Qto_WindowBaseQuantities
2022-11-16 22:28:10 +01:00
Massimo Fabbro
8f8940de2a
Minor fix
2022-11-16 21:56:29 +01:00