PageRenderTime 43ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/DynamicDataDisplay/DataSources/MultiDimensional/INonUniformDataSource2D.cs

#
C# | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 0ef0d7bad6df0ab3335e2b0e46a1a31e MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Microsoft.Research.DynamicDataDisplay.DataSources
  6. {
  7. public interface INonUniformDataSource2D<T> : IDataSource2D<T> where T : struct
  8. {
  9. double[] XCoordinates { get; }
  10. double[] YCoordinates { get; }
  11. }
  12. }