source:
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/PlotterExtensions.cs
@
13808
Last change on this file since 13808 was 12503, checked in by aballeit, 9 years ago | |
---|---|
File size: 334 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary |
7 | { |
8 | public static class PlotterExtensions |
9 | { |
10 | public static void AddChild(this Plotter plotter, IPlotterElement child) |
11 | { |
12 | plotter.Children.Add(child); |
13 | } |
14 | } |
15 | } |
Note: See TracBrowser
for help on using the repository browser.