public OverlapInformation(LineSegment edge, float overlap, bool valid)
 {
     Valid   = valid;
     Edge    = edge;
     Overlap = overlap;
 }
Exemple #2
0
        public bool Intersects(LineSegment segment)
        {
            IntersectionInformation result = GetIntersectionInformation(segment);

            return(result.Valid ? result.Intersected : false);
        }