示例#1
0
文件: Quad.cs 项目: ReMinoer/Glyph
 public bool Intersects(Segment segment) => IntersectionUtils.Intersects(this, segment);
示例#2
0
文件: Quad.cs 项目: ReMinoer/Glyph
 public bool Intersects <T>(T edgedShape) where T : IEdgedShape => IntersectionUtils.Intersects(this, edgedShape);
示例#3
0
文件: Quad.cs 项目: ReMinoer/Glyph
 public bool Intersects(Circle circle) => IntersectionUtils.Intersects(this, circle);