Path: Add LazyLoader usage for UseOutline module dependencies

This commit is contained in:
Russell Johnson
2021-02-05 18:11:23 -06:00
parent 104132935e
commit 4a1ac345eb

View File

@@ -34,6 +34,11 @@ import math
import area
from pivy import coin
# lazily loaded modules
from lazy_loader.lazy_loader import LazyLoader
Part = LazyLoader('Part', globals(), 'Part')
TechDraw = LazyLoader('TechDraw', globals(), 'TechDraw')
__doc__ = "Class and implementation of the Adaptive path operation."
def convertTo2d(pathArray):