Changeset aef2cf2 in sasview
- Timestamp:
- Apr 14, 2010 2:04:29 PM (15 years ago)
- Branches:
- master, 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 65026f8
- Parents:
- 19403da
- Location:
- guiframe/local_perspectives/plotting
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
guiframe/local_perspectives/plotting/AnnulusSlicer.py
rc5874f2 raef2cf2 402 402 @param sign: the direction of motion the the marker 403 403 """ 404 def __init__(self,base,axes,color=' black', zorder=3, side=None):404 def __init__(self,base,axes,color='grey', zorder=3, side=None): 405 405 406 406 _BaseInteractor.__init__(self, base, axes, color=color) … … 422 422 423 423 # Inner circle 424 self.outer_circle = RingInteractor(self, self.base.subplot, zorder=zorder+1, r=self.qmax/1.8,sign=self.sign)424 self.outer_circle = RingInteractor(self, self.base.subplot, 'blue', zorder=zorder+1, r=self.qmax/1.8,sign=self.sign) 425 425 self.outer_circle.qmax = self.qmax*1.2 426 426 -
guiframe/local_perspectives/plotting/boxMask.py
rc5874f2 raef2cf2 62 62 self.horizontal_lines.qmax = self.qmax 63 63 64 self.vertical_lines= VerticalDoubleLine(self, self.base.subplot,color=' black',64 self.vertical_lines= VerticalDoubleLine(self, self.base.subplot,color='grey', 65 65 zorder=zorder, 66 66 y= self.ymax, -
guiframe/local_perspectives/plotting/sectorMask.py
rc5874f2 raef2cf2 12 12 Draw a sector slicer.Allow to find the data 2D inside of the sector lines 13 13 """ 14 def __init__(self,base,axes,color=' black', zorder=3, side = False):14 def __init__(self,base,axes,color='gray', zorder=3, side = False): 15 15 16 16 _BaseInteractor.__init__(self, base, axes, color=color) … … 38 38 self.main_line.qmax = self.qmax 39 39 ## Right Side line 40 self.right_line= SideInteractor(self, self.base.subplot,color=' black', zorder=zorder,40 self.right_line= SideInteractor(self, self.base.subplot,color='gray', zorder=zorder, 41 41 r=self.qmax, 42 42 phi= -1*self.phi, … … 44 44 self.right_line.qmax = self.qmax 45 45 ## Left Side line 46 self.left_line= SideInteractor(self, self.base.subplot,color=' black', zorder=zorder,46 self.left_line= SideInteractor(self, self.base.subplot,color='gray', zorder=zorder, 47 47 r=self.qmax, 48 48 phi= self.phi,
Note: See TracChangeset
for help on using the changeset viewer.