Plotter.Plotter C# (CSharp) Method

Plotter() public method

public Plotter ( int xsize, int ysize, TypeTabulator, d, TypeList, tl ) : System
xsize int
ysize int
d TypeTabulator,
tl TypeList,
return System
    public Plotter(int xsize, int ysize, TypeTabulator d, TypeList tl)
    {
        this.xsize = xsize;
        this.ysize = ysize;
        this.d = d;
        this.tl = tl;
        this.Profile = d.Profile;

        FixupData ();
    }