source:
branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/DataSources/MultiDimensional/INonUniformDataSource2D.cs
@
13834
Last change on this file since 13834 was 12503, checked in by aballeit, 10 years ago | |
---|---|
File size: 320 bytes |
Line | |
---|---|
1 | using System; |
2 | using System.Collections.Generic; |
3 | using System.Linq; |
4 | using System.Text; |
5 | |
6 | namespace Microsoft.Research.DynamicDataDisplay.DataSources |
7 | { |
8 | public interface INonUniformDataSource2D<T> : IDataSource2D<T> where T : struct |
9 | { |
10 | double[] XCoordinates { get; } |
11 | double[] YCoordinates { get; } |
12 | } |
13 | } |
Note: See TracBrowser
for help on using the repository browser.