47 lines
1.1 KiB
C#
47 lines
1.1 KiB
C#
|
using RootSystem = System;
|
||
|
using System.Linq;
|
||
|
using System.Collections.Generic;
|
||
|
namespace Windows.Kinect
|
||
|
{
|
||
|
//
|
||
|
// Windows.Kinect.DepthSpacePoint
|
||
|
//
|
||
|
[RootSystem.Runtime.InteropServices.StructLayout(RootSystem.Runtime.InteropServices.LayoutKind.Sequential)]
|
||
|
public struct DepthSpacePoint
|
||
|
{
|
||
|
public float X { get; set; }
|
||
|
public float Y { get; set; }
|
||
|
|
||
|
public override int GetHashCode()
|
||
|
{
|
||
|
return X.GetHashCode() ^ Y.GetHashCode();
|
||
|
}
|
||
|
|
||
|
public override bool Equals(object obj)
|
||
|
{
|
||
|
if (!(obj is DepthSpacePoint))
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return this.Equals((DepthSpacePoint)obj);
|
||
|
}
|
||
|
|
||
|
public bool Equals(DepthSpacePoint obj)
|
||
|
{
|
||
|
return X.Equals(obj.X) && Y.Equals(obj.Y);
|
||
|
}
|
||
|
|
||
|
public static bool operator ==(DepthSpacePoint a, DepthSpacePoint b)
|
||
|
{
|
||
|
return a.Equals(b);
|
||
|
}
|
||
|
|
||
|
public static bool operator !=(DepthSpacePoint a, DepthSpacePoint b)
|
||
|
{
|
||
|
return !(a.Equals(b));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|