Missing import FreeCAD and/or FreeCADGui (again)

This commit is contained in:
cclauss
2019-01-05 21:47:13 +01:00
committed by Yorik van Havre
parent cf5a045792
commit 9af7b83538
6 changed files with 12 additions and 1 deletions

View File

@@ -32,7 +32,10 @@
Log ("FreeCAD test running...\n\n")
import TestApp, sys
import sys
import FreeCAD
import TestApp
testCase = FreeCAD.ConfigGet("TestCase")

View File

@@ -24,6 +24,9 @@
This macro is used in conjunction with the toolpathparams script to create an object that represents a tool for use in a CNC program. Create a group and then select it- then run the macro.
You will have to edit the parameters inside the Data tab of the tool object.
'''
import FreeCAD
import FreeCADGui
import PathScripts
import toolpathparams as tp

View File

@@ -7,6 +7,7 @@
# (ie an SVG symbol)
import FreeCAD
import FreeCADGui
import Part
import Drawing
import TechDraw

View File

@@ -5,6 +5,8 @@
# len(knot_u) := nNodes_u + degree_u + 1
# len(knot_v) := nNodes_v + degree_v + 1
import FreeCAD
degree_u=2
degree_v=2
nNodes_u=5

View File

@@ -7,6 +7,7 @@
# DWire, etc) then run this macro.
import FreeCAD
import FreeCADGui
import Part
import Draft

View File

@@ -6,6 +6,7 @@
# tree, not document view!!), then select edges from the "wire" object.
import FreeCAD
import FreeCADGui
import Part
import Draft