
Modification and addition: Creation of TAB : Wire 2D and 3D parametric functions panel. A set of predefined functions is available via a combo box. With possible saving of your parametric functions into a file in the home directory. Creation of TAB : Sweeping Move of Section Sweep from "Object" TAB into "Sweeping" TAB: into "Object" TAB : Compute the common parts between selected shapes. - Select at least two objects and click. Highlight common parts by showing the common shape in red and setting half- transparency on original parts (the original objects are not modified). Original code from HighlightCommon.FCMacro https://github.com/FreeCAD/FreeCAD-macros/blob/master/Utility/HighlightCommon.FCMacro Authors = 2015 Javier Martinez Garcia into "Object" TAB : Compute the difference parts between selected shapes. - Select two objects and click. Compute the difference between two shapes. Additions are marked red, removals are marked green. Both original parts will be half transparent. The volume of the additions and removals are printed in the console. Original code from HighlightDifference.FCMacro https://github.com/FreeCAD/FreeCAD-macros/blob/master/Utility/HighlightDifference.FCMacro Authors = 2015 Gaël Ecorchard (Galou) into "Axis 1/2" TAB : Axis=(Points): Create a "best fit" line from a set of points using Singular Value Decomposition.. - First select several Points - Then push this button The 3 eigenvectors are generated. Orange one is the best fit line.
19 lines
546 B
Python
19 lines
546 B
Python
# -*- coding: utf-8 -*-
|
|
import sys
|
|
import os.path
|
|
|
|
try:
|
|
# try import
|
|
import WorkFeature.WF_2015 as WF
|
|
except:
|
|
# 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
|
|
import WorkFeature.WF_2015 as WF
|
|
|
|
WF.myDialog = WF.WorkFeatureTab()
|