Changeset 75906a1 in sasview for src/sas/qtgui/Plotting
- Timestamp:
- Oct 26, 2018 6:39:39 AM (6 years ago)
- Branches:
- ESS_GUI, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc
- Children:
- 9d23e4c, 722b7d6
- Parents:
- aed159f
- Location:
- src/sas/qtgui/Plotting
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/qtgui/Plotting/Binder.py
rcee5c78 r75906a1 233 233 """ 234 234 # TODO: sort by zorder of axes then by zorder within axes 235 #self._artists.sort(cmp=lambda x, y: cmp(y.zorder, x.zorder))236 #self._artists.sort(cmp=lambda x, y: y.zorder.__gt__(x.zorder))237 235 found = Selection() 236 self._artists.sort(key=lambda x: x.zorder, reverse=True) 238 237 for artist in self._artists: 239 238 # TODO: should contains() return false if invisible? -
src/sas/qtgui/Plotting/ConvertUnits.py
rb8080e1 r75906a1 10 10 """ 11 11 if power != 0: 12 if unit.find("^") != -1: # if the unit contains a power er^13 toks = re.split( "\^", unit)12 if unit.find("^") != -1: # if the unit contains a power ^ 13 toks = re.split(r"\^", unit) 14 14 if toks[0].find("/") != -1 or \ 15 15 toks[0].find("-") != -1: -
src/sas/qtgui/Plotting/Slicers/AzimutSlicer.py
re20870bc r75906a1 137 137 sector = sect(self.base.data2D) 138 138 139 from sas. sasgui.guiframe.dataFittingimport Data1D139 from sas.qtgui.Plotting.PlotterData import Data1D 140 140 if hasattr(sector, "dxl"): 141 141 dxl = sector.dxl
Note: See TracChangeset
for help on using the changeset viewer.