Beispiel #1
0
		public Form DisplayPlots()
		{
			if ( mPlotAngle ) {
				var aplot = BuildAnglePlot();
				var zf1 = new ZedGraphFigure(aplot);
				zf1.Visible = true;
			}
			
			var pplot = BuildPositionPlot();
			var zf2 = new ZedGraphFigure(pplot);
			zf2.Visible = true;
			return zf2;
		}
Beispiel #2
0
        public Form DisplayPlots()
        {
            if (mPlotAngle)
            {
                var aplot = BuildAnglePlot();
                var zf1   = new ZedGraphFigure(aplot);
                zf1.Visible = true;
            }

            var pplot = BuildPositionPlot();
            var zf2   = new ZedGraphFigure(pplot);

            zf2.Visible = true;
            return(zf2);
        }