Changes in src/sas/sasgui/plottools/plottables.py [1fac6c0:8abd96d] in sasview
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/plottools/plottables.py
r1fac6c0 r8abd96d 1022 1022 """ 1023 1023 1024 def __init__(self, x, y, dx=None, dy=None , lam=None, dlam=None):1024 def __init__(self, x, y, dx=None, dy=None): 1025 1025 """ 1026 1026 Draw points specified by x[i],y[i] in the current color/symbol. … … 1036 1036 self.x = x 1037 1037 self.y = y 1038 self.lam = lam1039 1038 self.dx = dx 1040 1039 self.dy = dy 1041 self.dlam = dlam1042 1040 self.source = None 1043 1041 self.detector = None
Note: See TracChangeset
for help on using the changeset viewer.