コード例 #1
0
ファイル: TaskPanel.py プロジェクト: Koelie2/freecad
 def accept(self):
     path = Paths.modulePath() + "/Examples/"
     if(self.form.ship.currentIndex() == 0):     # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif(self.form.ship.currentIndex() == 1):   # Barehull 5415
         App.open(path + "barehull5415.fcstd")
     elif(self.form.ship.currentIndex() == 2):   # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     return True
コード例 #2
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipOutlineDraw/TaskPanel.ui"
     self.ship = None
     self.skip = False
     self.LSections = []
     self.BSections = []
     self.TSections = []
     self.obj = None
     self.preview = Preview.Preview()
コード例 #3
0
 def accept(self):
     path = Paths.modulePath() + "/Examples/"
     if (self.form.ship.currentIndex() == 0):  # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif (self.form.ship.currentIndex() == 1):  # Barehull 5415
         App.open(path + "barehull5415.fcstd")
     elif (self.form.ship.currentIndex() == 2):  # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     return True
コード例 #4
0
ファイル: TaskPanel.py プロジェクト: Koelie2/freecad
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipOutlineDraw/TaskPanel.ui"
     self.ship = None
     self.skip = False
     self.LSections = []
     self.BSections = []
     self.TSections = []
     self.obj = None
     self.preview = Preview.Preview()
コード例 #5
0
ファイル: TaskPanel.py プロジェクト: RoyOnWheels/FreeCAD
 def accept(self):
     path = Paths.modulePath() + "/Examples/"
     if(self.form.ship.currentIndex() == 0):     # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif(self.form.ship.currentIndex() == 1):   # Wigley canonical ship
         App.open(path + "wigley.fcstd")
     elif(self.form.ship.currentIndex() == 2):   # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     elif(self.form.ship.currentIndex() == 2):   # Wigley (Katamaran)
         App.open(path + "wigley_katamaran.fcstd")
     return True
コード例 #6
0
	def accept(self):
                path = Paths.modulePath() + "/Resources/VENDING/"
                if(self.form.ship.currentIndex() == 0):	 # box2
                        App.open(path + "box2.fcstd")
                elif(self.form.ship.currentIndex() == 1):   # CircleFan
                        App.open(path + "CircleFan.fcstd")
                elif(self.form.ship.currentIndex() == 2):   # Part 1
                        App.open(path + "Part1.fcstd")
                elif(self.form.ship.currentIndex() == 2):   # Part 4
                        App.open(path + "Part4.fcstd")
		return True
コード例 #7
0
 def accept(self):
     path = Paths.modulePath() + "/Resources/VENDING/"
     if (self.form.ship.currentIndex() == 0):  # box2
         App.open(path + "box2.fcstd")
     elif (self.form.ship.currentIndex() == 1):  # CircleFan
         App.open(path + "CircleFan.fcstd")
     elif (self.form.ship.currentIndex() == 2):  # Part 1
         App.open(path + "Part1.fcstd")
     elif (self.form.ship.currentIndex() == 2):  # Part 4
         App.open(path + "Part4.fcstd")
     return True
コード例 #8
0
ファイル: TaskPanel.py プロジェクト: h4ck3rm1k3/FreeCAD
 def accept(self):
     path = Paths.modulePath() + "/Examples/"
     if (self.form.ship.currentIndex() == 0):  # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif (self.form.ship.currentIndex() == 1):  # Wigley canonical ship
         App.open(path + "wigley.fcstd")
     elif (self.form.ship.currentIndex() == 2):  # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     elif (self.form.ship.currentIndex() == 2):  # Wigley (Katamaran)
         App.open(path + "wigley_katamaran.fcstd")
     return True
コード例 #9
0
 def accept(self):
     """Load the selected hull example."""
     path = Paths.modulePath() + "/resources/examples/"
     mw = self.getMainWindow()
     form = mw.findChild(QtGui.QWidget, "TaskPanel")
     form.ship = self.widget(QtGui.QComboBox, "Ship")
     if (form.ship.currentIndex() == 0):  # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif (form.ship.currentIndex() == 1):  # Wigley canonical ship
         App.open(path + "wigley.fcstd")
     elif (form.ship.currentIndex() == 2):  # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     elif (form.ship.currentIndex() == 3):  # Wigley (Katamaran)
         App.open(path + "wigley_katamaran.fcstd")
     return True
コード例 #10
0
 def accept(self):
     """Load the selected hull example."""
     path = Paths.modulePath() + "/resources/examples/"
     mw = self.getMainWindow()
     form = mw.findChild(QtGui.QWidget, "TaskPanel")
     form.ship = self.widget(QtGui.QComboBox, "Ship")
     if(form.ship.currentIndex() == 0):     # s60 from Iowa University
         App.open(path + "s60.fcstd")
     elif(form.ship.currentIndex() == 1):   # Wigley canonical ship
         App.open(path + "wigley.fcstd")
     elif(form.ship.currentIndex() == 2):   # s60 (Katamaran)
         App.open(path + "s60_katamaran.fcstd")
     elif(form.ship.currentIndex() == 2):   # Wigley (Katamaran)
         App.open(path + "wigley_katamaran.fcstd")
     return True
コード例 #11
0
ファイル: TaskPanel.py プロジェクト: RoyOnWheels/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/simCreate/TaskPanel.ui"
コード例 #12
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipGZ/TaskPanel.ui"
コード例 #13
0
def path():
    """ Gets the OpenCL kernels path
    @return OpenCL kernels path
    """
    path = Paths.modulePath() + "/resources/opencl"
    return path
コード例 #14
0
 def __init__(self):
     """Constructor"""
     self.ui = Paths.modulePath() + "/shipCreateWeight/TaskPanel.ui"
コード例 #15
0
 def __init__(self):
     """Constructor."""
     self.ui = Paths.modulePath() + "/shipLoadExample/TaskPanel.ui"
コード例 #16
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/simRun/TaskPanel.ui"
     self.sim = False
コード例 #17
0
 def __init__(self):
     self.ui  = Paths.modulePath() + "/simPost/TaskPanel.ui"
コード例 #18
0
def path():
    """ Gets the OpenCL kernels path
    @return OpenCL kernels path
    """
    path = Paths.modulePath() + "/resources/opencl"
    return path
コード例 #19
0
ファイル: TaskPanel.py プロジェクト: 3DPrinterGuy/FreeCAD
 def __init__(self):
     """Constructor"""
     self.ui = Paths.modulePath() + "/shipCreateShip/TaskPanel.ui"
     self.preview = Preview.Preview()
コード例 #20
0
ファイル: TaskPanel.py プロジェクト: guilhemdesq/FreeCAD_dev
 def __init__(self):
     self.ui = Paths.modulePath() + "/tankWeights/TaskPanel.ui"
     self.ship = None
     self.preview = Preview.Preview()
コード例 #21
0
ファイル: TaskPanel.py プロジェクト: Koelie2/freecad
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipLoadExample/TaskPanel.ui"
コード例 #22
0
ファイル: TaskPanel.py プロジェクト: guilhemdesq/FreeCAD_dev
	def __init__(self):
		self.ui = Paths.modulePath() + "/tankCreateTank/TaskPanel.ui"
コード例 #23
0
ファイル: TaskPanel.py プロジェクト: 3DPrinterGuy/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipCapacityCurve/TaskPanel.ui"
     self.tank = None
コード例 #24
0
def clPath():
    """ Gets the OpenCL kernels path
    @return OpenCL kernels path
    """
    path = Paths.modulePath() + "/OpenCL"
    return path
コード例 #25
0
ファイル: TaskPanel.py プロジェクト: guilhemdesq/FreeCAD_dev
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipHydrostatics/TaskPanel.ui"
     self.ship = None
     self.running = False
コード例 #26
0
ファイル: TaskPanel.py プロジェクト: 3DPrinterGuy/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipAreasCurve/TaskPanel.ui"
     self.preview = Preview.Preview()
     self.ship = None
コード例 #27
0
ファイル: TaskPanel.py プロジェクト: archri/freecad
 def __init__(self):
     self.ui = Paths.modulePath() + "/tankWeights/TaskPanel.ui"
     self.ship = None
     self.preview = Preview.Preview()
コード例 #28
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipAreasCurve/TaskPanel.ui"
     self.preview = Preview.Preview()
     self.ship = None
コード例 #29
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/tankGZ/TaskPanel.ui"
     self.ship = None
     self.tanks = {}
コード例 #30
0
ファイル: Utils.py プロジェクト: Barleyman/FreeCAD_sf_master
def clPath():
    """ Gets the OpenCL kernels path
    @return OpenCL kernels path
    """
    path = Paths.modulePath() + "/OpenCL"
    return path
コード例 #31
0
ファイル: TaskPanel.py プロジェクト: h4ck3rm1k3/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/simCreate/TaskPanel.ui"
コード例 #32
0
	def __init__(self):
                self.ui = Paths.modulePath() + "NR_TEST/Gui/Vend/TaskPanel.ui"
コード例 #33
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipCapacityCurve/TaskPanel.ui"
     self.tank = None
コード例 #34
0
ファイル: TaskPanel.py プロジェクト: h4ck3rm1k3/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/simPost/TaskPanel.ui"
コード例 #35
0
 def __init__(self):
     """Constructor."""
     self.ui = Paths.modulePath() + "/shipLoadExample/TaskPanel.ui"
コード例 #36
0
ファイル: TaskPanel.py プロジェクト: h4ck3rm1k3/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipLoadExample/TaskPanel.ui"
コード例 #37
0
 def __init__(self):
     """Constructor"""
     self.ui = Paths.modulePath() + "/shipCreateWeight/TaskPanel.ui"
コード例 #38
0
ファイル: TaskPanel.py プロジェクト: Koelie2/freecad
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipHydrostatics/TaskPanel.ui"
     self.ship = None
コード例 #39
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipCreateShip/TaskPanel.ui"
     self.preview = Preview.Preview()
コード例 #40
0
 def __init__(self):
     self.ui = Paths.modulePath() + "/tankGZ/TaskPanel.ui"
     self.ship = None
     self.tanks = {}
コード例 #41
0
ファイル: TaskPanel.py プロジェクト: archri/freecad
 def __init__(self):
     self.ui = Paths.modulePath() + "/tankCreateTank/TaskPanel.ui"
コード例 #42
0
ファイル: TaskPanel.py プロジェクト: caceres/FreeCAD
 def __init__(self):
     self.ui = Paths.modulePath() + "/shipGZ/TaskPanel.ui"
コード例 #43
0
	def __init__(self):
		self.ui  = Paths.modulePath() + "/simRun/TaskPanel.ui"
		self.sim = False
コード例 #44
0
 def __init__(self):
     self.ui = Paths.modulePath() + "NR_TEST/Gui/Vend/TaskPanel.ui"