- Timestamp:
- Aug 29, 2017 5:33:19 AM (7 years ago)
- Branches:
- ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 8222f171
- Parents:
- e43fc91
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Calculators/GenericScatteringCalculator.py
r464cd07 r4d1eff2 55 55 self.is_avg = False 56 56 self.data_to_plot = None 57 self.graph_num = 1 # index for name of graph 57 58 58 59 # combox box … … 100 101 101 102 # plots - 3D in real space 102 plot3d = self.plot3d(has_arrow=False) 103 self.trigger_plot_3d.connect(plot3d) 104 #self.trigger_plot_3d.connect(lambda: self.plot3d(has_arrow=False)) 105 106 self.graph_num = 1 # index for name of graph 103 self.trigger_plot_3d.connect(lambda: self.plot3d(has_arrow=False)) 107 104 108 105 # TODO the option Ellipsoid has not been implemented … … 693 690 Plot 3D self._data 694 691 """ 692 if not data: 693 return 695 694 self.data = data 696 assert(self._data)695 #assert(self._data) 697 696 # Prepare and show the plot 698 697 self.showPlot(data=self.data, has_arrow=has_arrow)
Note: See TracChangeset
for help on using the changeset viewer.