Example #1
0
        public static bool CircleOverConvexPolygon(Circle c, ConvexPolygon p)
        {
            if (p.ContainsPoint(c.Center))
            {
                return(true);
            }
            float r2 = c.Radius * c.Radius;

            for (int i = 0, j = p.Vertices.Length - 1; i < p.Vertices.Length; j = i++)
            {
                if (XY.SqrDistance(c.Center, p.Vertices [i]) < r2)
                {
                    return(true);
                }
                if (
                    XY.Dot(c.Center - p.Vertices [i], p.Vertices [j] - p.Vertices [i]) >= 0 &&
                    XY.Dot(c.Center - p.Vertices [j], p.Vertices [i] - p.Vertices [j]) >= 0 &&
                    DistancePointToLine(c.Center, p.Vertices [i], p.Vertices [j]) < c.Radius
                    )
                {
                    return(true);
                }
            }
            return(false);
        }
Example #2
0
 public static XY Project(XY v, XY w) => XY.Dot(v, w) / w.SqrLength * w;