Plot.py 229 B

12345678910
  1. import numpy as np
  2. from .globals import *
  3. from .plotim import linear_plot
  4. class Plot(linear_plot):
  5. def __init__(self, xaxis, yaxis, **kwargs):
  6. linear_plot.__init__(self, **kwargs)
  7. self.set_scale(xaxis, yaxis)