コード例 #1
0
ファイル: plot2d.py プロジェクト: somakray/UniDec
 def __init__(self, *args, **kwargs):
     """
     Initialize parameters for plotting window
     :param args: Arguments passed to PlottingWindow
     :param kwargs: Keywords passed to PlottingWindow
     :return: Plot2d object
     """
     PlottingWindow.__init__(self, *args, **kwargs)
コード例 #2
0
ファイル: ColorPlot.py プロジェクト: seanpatcleary/UniDec
 def __init__(self, *args, **kwargs):
     """
     Initialize by inheriting from Plotting Window and setting the axes dimensions.
     :param args:
     :param kwargs:
     :return: ColorPlot2D object
     """
     PlottingWindow.__init__(self, *args, **kwargs)
     self._axes = [0.1, 0.1, 0.64, 0.8]
コード例 #3
0
 def __init__(self, *args, **kwargs):
     """
     Initialize the plotting window. Specify axes. Specify that the plot does not have normal tick marks to repaint.
     :param args:
     :param kwargs:
     :return: CubePlot Object
     """
     PlottingWindow.__init__(self, *args, **kwargs)
     self._axes = [0.01, 0.01, 0.99, 0.99]
     self.normaltickes = False
コード例 #4
0
ファイル: plot1d.py プロジェクト: yingyingjin/UniDec
 def __init__(self, *args, **kwargs):
     """
     Inherit from PlottingWindow
     :param args:
     :param kwargs:
     :return:
     """
     PlottingWindow.__init__(self, *args, **kwargs)
     self.mlist = []
     self.x1, self.x2 = None, None
     self.colors = []
コード例 #5
0
 def __init__(self, *args, **kwargs):
     """
     Initialize the plotting window. Specify axes. Specify that the plot does not have normal tick marks to repaint.
     :param args:
     :param kwargs:
     :return: Waterfall Object
     """
     if "frame" in kwargs:
         self.frame = kwargs['frame']
         del kwargs['frame']
     PlottingWindow.__init__(self, *args, **kwargs)
     self._axes = [0.05, 0.1, 0.9, 0.9]
     self.cids = []