This commit is contained in:
Andrej730
2024-05-23 12:02:37 +05:00
parent fffd7360cb
commit f576aadee1
23 changed files with 343 additions and 213 deletions
@@ -21,7 +21,10 @@ import math
import bmesh
import ifcopenshell.util.unit
from mathutils import Vector, Matrix
from typing import Union, Optional, Literal, Any
from typing import Union, Optional, Literal, Any, TYPE_CHECKING
if TYPE_CHECKING:
from blenderbim.bim.module.geometry.helper import Helper
Z_AXIS = Vector((0, 0, 1))