/Main/src/DynamicDataDisplay.Maps/Charts/VectorFields/Convolution/IntPoint.cs
# · C# · 19 lines · 17 code · 2 blank · 0 comment · 0 complexity · d4883f77d9f40b256e6c5d054dca8484 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Microsoft.Research.DynamicDataDisplay.Maps.Charts.VectorFields
- {
- public struct IntPoint
- {
- public IntPoint(int x, int y)
- {
- this.X = x;
- this.Y = y;
- }
-
- public int X;
- public int Y;
- }
- }