12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using bbiwarg.Utility;
- namespace bbiwarg.Recognition.FingerRecognition
- {
- public class FingerSlice
- {
- public Vector2D Mid { get; private set; }
- public Vector2D Start { get; private set; }
- public Vector2D End { get; private set; }
- public LineSegment2D LineSegment { get; private set; }
- public Vector2D Direction { get { return LineSegment.Direction; } }
- public float Length { get { return LineSegment.Length; } }
- public FingerSlice(Vector2D start, Vector2D end)
- {
- Start = start;
- End = end;
- Mid = (start + end) / 2;
- LineSegment = new LineSegment2D(Start, End);
- }
- }
- }
|