Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/PointMarkers/CirclePointMarker.cs @ 12503

Last change on this file since 12503 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 403 bytes
Line 
1using System.Windows;
2using System.Windows.Media;
3
4namespace Microsoft.Research.DynamicDataDisplay.PointMarkers
5{
6    /// <summary>Renders circle around each point of graph</summary>
7  public class CirclePointMarker : ShapePointMarker {
8
9        public override void Render(DrawingContext dc, Point screenPoint) {
10      dc.DrawEllipse(Fill, Pen, screenPoint, Size / 2, Size / 2);
11    }
12  }
13
14}
Note: See TracBrowser for help on using the repository browser.