diff --git a/Sources/LibMyGesturesBank/MyGesturesBank.csproj b/Sources/LibMyGesturesBank/MyGesturesBank.csproj index 1cd793f..3113c9f 100644 --- a/Sources/LibMyGesturesBank/MyGesturesBank.csproj +++ b/Sources/LibMyGesturesBank/MyGesturesBank.csproj @@ -51,7 +51,6 @@ - diff --git a/Sources/LibMyGesturesBank/TwoHandsDragon.cs b/Sources/LibMyGesturesBank/TwoHandsDragon.cs deleted file mode 100644 index 6b5400a..0000000 --- a/Sources/LibMyGesturesBank/TwoHandsDragon.cs +++ /dev/null @@ -1,24 +0,0 @@ -using KinectUtils; -using Microsoft.Kinect; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace MyGesturesBank -{ - public class TwoHandsDragon : Posture - { - protected override bool TestPosture(Body body) - { - var handRight = body.Joints[JointType.HandRight].Position; - var handLeft = body.Joints[JointType.HandLeft].Position; - var head = body.Joints[JointType.Head].Position; - - return handRight.Y > head.Y && handLeft.Y > head.Y; - } - public override string GestureName => "Two Hands Dragon"; - } - -}