PageRenderTime 50ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/DynamicDataDisplay.Maps/Charts/VectorFields/Convolution/IntPoint.cs

#
C# | 19 lines | 17 code | 2 blank | 0 comment | 0 complexity | d4883f77d9f40b256e6c5d054dca8484 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.Maps.Charts.VectorFields
  6. {
  7. public struct IntPoint
  8. {
  9. public IntPoint(int x, int y)
  10. {
  11. this.X = x;
  12. this.Y = y;
  13. }
  14. public int X;
  15. public int Y;
  16. }
  17. }