コード例 #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);