WorkFeature/start_WF.py
Rentlau 414bd24e9c Release of 2016-09-10 :
Bug Fix:
Correction of home directory path by default
(for txt file selection widget) on "Save" and "Load Points" functions
 not handled previpusly for Window version.

Modification:
For "Point tab" changes for allowing more complex multi objects
selections, same improvements ongoing for other tabs for next release.

Addition:

into "Circle" TAB :
	Arc=(3 Points):
	Create one Arc depending on 3 points.
		- First select 3 Points
		- Then Click on the button

into "Wire 1/3" TAB :
	Bezier Cubic=(4 Points):
	Create a Wire (Bezier Cubic) from 4 selected points.
		- First 4 Points
		- Then push this button

into "Image" TAB (new tab):
	Copy and Scale Image(s) :
	Scale an image along desired direction(s) (make a copy first of
	 the original Image).
        - First define the direction(s) on the right combo
        (default is XY):
        if X is selected then only X direction will be scaled
        if XY is selected then the scale will be squared in X and
        Y directions together
        - Select one or several Images (in combo view)
        - Select one Line (or 2 Points) (close to the Image) you want to
         define new dimension.
        (better to select a Line strictly in X direction if you want to
         enlarge/squize the Image in X direction)
         - Then give the target dimension of the Line (on the last right
          LineEdit).
2016-09-10 21:17:56 +02:00

42 lines
1.7 KiB
Python

# -*- coding: utf-8 -*-
import sys
import os.path
# Change this by your own FreeCAD lib path to import FreeCAD
if not sys.path.__contains__("/usr/lib/freecad/lib"):
sys.path.append("/usr/lib/freecad/lib")
try:
# try import
import WorkFeature.WF_2015 as WF
except:
try:
import FreeCAD
# first check if the path to WorkFeature was set in the preferences
param = FreeCAD.ParamGet('User parameter:Plugins/workfeature')
m_current_path = param.GetString('destination','')
if not m_current_path:
# get the path of the current python script
m_current_path = os.path.realpath(__file__)
m_current_path = os.path.dirname(m_current_path)
# check if this path belongs to the PYTHONPATH variable and if not add it
if not sys.path.__contains__(str(m_current_path)):
sys.path.append(str(m_current_path))
# retry import now
try:
import WorkFeature.WF_2015 as WF
except:
# we still cannot find WorkFeature. Ask the user
from PySide import QtGui
folderDialog = QtGui.QFileDialog.getExistingDirectory(None,QtGui.QApplication.translate("WorkFeature", "Location of your WorkFeature folder", None, QtGui.QApplication.UnicodeUTF8))
param.SetString('destination',folderDialog)
m_current_path = param.GetString('destination')
sys.path.append(str(m_current_path))
# retry import
import WorkFeature.WF_2015 as WF
except:
print "ERROR:cannot load FreeCAD module...modify line 6 and 7 of this script !!"
sys.exit(1)
WF.myDialog = WF.WorkFeatureTab()