BlenderBIM: typo fixes

This commit is contained in:
luz paz
2022-08-27 10:36:54 -04:00
committed by Dion Moult
parent 771ba4c337
commit 68bf7a08e0
16 changed files with 28 additions and 28 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ class GbxmlExporter:
def create_opening(self, object, polygon, parent):
opening = self.gbxml.add_element(parent, "Opening")
opening.set("id", "opening-{}-{}".format(object.name, polygon.index))
opening.set("windowTypeIdRef", "STD_EX11") # harcoded
opening.set("windowTypeIdRef", "STD_EX11") # hardcoded
opening.set("openingType", "FixedWindow") # hardcoded
planar_geometry = self.gbxml.add_element(opening, "PlanarGeometry")
self.create_poly_loop(object, polygon, planar_geometry)
@@ -49,7 +49,7 @@ with open(filepath) as fp:
entity_to_type_map.setdefault(entity, []).append(type_class)
line = fp.readline()
# This type of hacky express parsing doesn't accomodate subtypes, so...
# This type of hacky express parsing doesn't accommodate subtypes, so...
def get_inherited_map(declaration):