/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
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5 6namespace Microsoft.Research.DynamicDataDisplay.Maps.Charts.VectorFields 7{ 8 public struct IntPoint 9 { 10 public IntPoint(int x, int y) 11 { 12 this.X = x; 13 this.Y = y; 14 } 15 16 public int X; 17 public int Y; 18 } 19}