pull/277/head^2
Rob 2024-12-18 19:39:13 -05:00
rodzic c01edb144c
commit af584271b5
3 zmienionych plików z 2 dodań i 8 usunięć

Wyświetl plik

@ -3,8 +3,6 @@
Package to store all constants of Fabex.
"""
import sys
# PRECISION is used in most operations
PRECISION = 5
@ -39,10 +37,7 @@ _IS_LOADING_DEFAULTS = False
TOLERANCE = 1e-9
BIG_FLOAT = 1e38
if sys.version > "3":
PY3 = True
else:
PY3 = False
PY3 = True
OCL_SCALE = 1000.0

Wyświetl plik

@ -38,7 +38,6 @@ from ..utilities.simple_utils import (
deselect,
active_name,
remove_doubles,
active_name,
rename,
duplicate,
add_overcut,

Wyświetl plik

@ -13,7 +13,7 @@ warnings.simplefilter("once")
# bpy.ops.extensions.repo_sync_all(use_active_only=False)
# bpy.ops.extensions.package_install_files(filepath=f"{sys.argv[1]}", repo="user_default")
# sys.path.append("/home/runner/work/blendercam/blendercam/scripts/addons/cam")
sys.path.append(sys.argv[1])
# Get the scene
s = bpy.context.scene