示例#1
0
 /// <summary>
 /// True: The convex side of the vector is inside the shape.
 /// This is determined by the direction of the vector.
 /// </summary>
 /// <param name="vector"></param>
 /// <returns></returns>
 public bool ConvexInside(NVector vector)
 {
     return(_vector.IsConvexInside(vector, Tolerance));
 }