This commit is contained in:
Andrej730
2025-07-15 11:19:32 +05:00
parent a461281b1e
commit f18c93c9ee
15 changed files with 65 additions and 44 deletions
@@ -17,6 +17,7 @@
# along with IfcOpenShell. If not, see <http://www.gnu.org/licenses/>.
import ifcopenshell
import ifcopenshell.api.alignment
from ifcopenshell import entity_instance
import math
@@ -5,6 +5,8 @@ defaults = {"Girth": 1.0, "WallThickness": 0.11}
depths = [2.0, 3.0]
widths = [0.2, 0.3]
Girth, Depth, WallThickness, Width = 0.0, 0.0, 0.0, 0.0
for d, w in itertools.product(depths, widths):
D = dict(defaults, Depth=d, Width=w)