soundvision/UnityProject/Assets/ThridParty/Windows/Kinect/DepthSpacePoint.cs
2019-07-06 14:50:40 +02:00

46 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));
}
}
}