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)
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]
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
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 = []
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 = []