Changeset aef2cf2 in sasview


Ignore:
Timestamp:
Apr 14, 2010 2:04:29 PM (15 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

changed the color of slicer for masking 'cause not visuable in the masked region

Location:
guiframe/local_perspectives/plotting
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • guiframe/local_perspectives/plotting/AnnulusSlicer.py

    rc5874f2 raef2cf2  
    402402         @param sign: the direction of motion the the marker  
    403403    """ 
    404     def __init__(self,base,axes,color='black', zorder=3, side=None): 
     404    def __init__(self,base,axes,color='grey', zorder=3, side=None): 
    405405         
    406406        _BaseInteractor.__init__(self, base, axes, color=color) 
     
    422422                  
    423423        # 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) 
    425425        self.outer_circle.qmax = self.qmax*1.2 
    426426        
  • guiframe/local_perspectives/plotting/boxMask.py

    rc5874f2 raef2cf2  
    6262        self.horizontal_lines.qmax = self.qmax 
    6363         
    64         self.vertical_lines= VerticalDoubleLine(self, self.base.subplot,color='black', 
     64        self.vertical_lines= VerticalDoubleLine(self, self.base.subplot,color='grey', 
    6565                                                      zorder=zorder, 
    6666                                    y= self.ymax, 
  • guiframe/local_perspectives/plotting/sectorMask.py

    rc5874f2 raef2cf2  
    1212         Draw a sector slicer.Allow to find the data 2D inside of the sector lines 
    1313    """ 
    14     def __init__(self,base,axes,color='black', zorder=3, side = False): 
     14    def __init__(self,base,axes,color='gray', zorder=3, side = False): 
    1515         
    1616        _BaseInteractor.__init__(self, base, axes, color=color) 
     
    3838        self.main_line.qmax = self.qmax 
    3939        ## 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, 
    4141                                     r=self.qmax, 
    4242                                           phi= -1*self.phi, 
     
    4444        self.right_line.qmax = self.qmax 
    4545        ## 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, 
    4747                                     r=self.qmax, 
    4848                                           phi= self.phi, 
Note: See TracChangeset for help on using the changeset viewer.