コード例 #1
0
ファイル: GraphAxes.cs プロジェクト: holgateh/PendulumSim
        public GraphAxes(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.Black);
        }
コード例 #2
0
        public GraphGrid(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            //Set Label colour.
            this.SetColour(Brushes.LightGray);
        }
コード例 #3
0
ファイル: GraphLabels.cs プロジェクト: holgateh/PendulumSim
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            YAxisTitleLabel();
            YAxisLabels();
            XAxisTitleLabel();
            XAxisLabels();
        }
コード例 #4
0
        public void Update(GraphProperties graphProperties)
        {
            this.graphProperties = graphProperties;

            Grid();
        }