예제 #1
0
        public DirectXDrawable(DirectXPlot mainPlot)
        {
            MainPlot = mainPlot;

            AllocateResources();
            MainPlot.AddDrawable(this);
        }
예제 #2
0
파일: PowerBar.cs 프로젝트: g3gg0/rx-fft
 public PowerBar(DirectXPlot mainPlot)
     : base(mainPlot)
 {
     AbsoluteWidth  = 60;
     AbsoluteHeight = 10;
 }
예제 #3
0
 public StaticText(DirectXPlot mainPlot, string text)
     : base(mainPlot)
 {
     Text = text;
 }
예제 #4
0
 public ScrollingText(DirectXPlot mainPlot, string text)
     : base(mainPlot)
 {
     Text = text;
 }
예제 #5
0
 public DockPanel(DirectXPlot mainPlot, eOrientation orientation)
     : base(mainPlot)
 {
     Orientation = orientation;
 }
예제 #6
0
 public PlotVertsHistory(DirectXPlot mainPlot)
     : base(mainPlot)
 {
     HistLength = 1;
 }