plotter_13.py 485 B

123456789101112
  1. def plotPref(workspace):
  2. prefLayout = QSplitter(Qt.Horizontal)
  3. workspace.xLimitValue = QLabel(
  4. "X-axis range: (-" + str(workspace.axisRange[0]) + ", " + str(workspace.axisRange[0]) + ")")
  5. workspace.yLimitValue = QLabel(
  6. "Y-axis range: (-" + str(workspace.axisRange[1]) + ", " + str(workspace.axisRange[1]) + ")")
  7. workspace.zLimitValue = QLabel(
  8. "Z-axis range: (-" + str(workspace.axisRange[2]) + ", " + str(workspace.axisRange[2]) + ")")