Esempio n. 1
0
        public DirectXDrawable(DirectXPlot mainPlot)
        {
            MainPlot = mainPlot;

            AllocateResources();
            MainPlot.AddDrawable(this);
        }
Esempio n. 2
0
 public PowerBar(DirectXPlot mainPlot)
     : base(mainPlot)
 {
     AbsoluteWidth  = 60;
     AbsoluteHeight = 10;
 }
Esempio n. 3
0
 public StaticText(DirectXPlot mainPlot, string text)
     : base(mainPlot)
 {
     Text = text;
 }
Esempio n. 4
0
 public ScrollingText(DirectXPlot mainPlot, string text)
     : base(mainPlot)
 {
     Text = text;
 }
Esempio n. 5
0
 public DockPanel(DirectXPlot mainPlot, eOrientation orientation)
     : base(mainPlot)
 {
     Orientation = orientation;
 }
Esempio n. 6
0
 public PlotVertsHistory(DirectXPlot mainPlot)
     : base(mainPlot)
 {
     HistLength = 1;
 }