コード例 #1
0
ファイル: Segment.cs プロジェクト: Umqra/GameTask
 public Segment IntersectWithSegment(Segment segment)
 {
     return(GeometryOperations.IntersectSegments(this, segment));
 }
コード例 #2
0
ファイル: Segment.cs プロジェクト: Umqra/GameTask
 public double DistanceToPoint(Point P)
 {
     return(GeometryOperations.DistanceFromPointToSegment(P, this));
 }
コード例 #3
0
ファイル: Segment.cs プロジェクト: Umqra/GameTask
 public Point IntersectWithLine(Line line)
 {
     return(GeometryOperations.IntersectSegmentLine(this, line));
 }
コード例 #4
0
 public Segment IntersectWithLine(Line line)
 {
     return(GeometryOperations.IntersectCircleLine(this, line));
 }
コード例 #5
0
ファイル: Segment.cs プロジェクト: Umqra/GameTask
 public bool ContainsPoint(Point P)
 {
     return(GeometryOperations.IsPointOnSegment(P, this));
 }
コード例 #6
0
ファイル: Point.cs プロジェクト: Umqra/GameTask
 public double DistanceToPolygon(ConvexPolygon polygon)
 {
     return(GeometryOperations.DistanceFromPointToPolygon(this, polygon));
 }
コード例 #7
0
ファイル: Point.cs プロジェクト: Umqra/GameTask
 public Point ProjectToLine(Line line)
 {
     return(GeometryOperations.ProjectPointOnLine(this, line));
 }
コード例 #8
0
ファイル: Point.cs プロジェクト: Umqra/GameTask
 public double DistanceToLine(Line line)
 {
     return(GeometryOperations.DistanceFromPointToLine(this, line));
 }
コード例 #9
0
ファイル: Point.cs プロジェクト: Umqra/GameTask
 public double DistanceToSegment(Segment segment)
 {
     return(GeometryOperations.DistanceFromPointToSegment(this, segment));
 }
コード例 #10
0
 public Segment NeareseEdgeFromPoint(Point P)
 {
     return(GeometryOperations.NearestEdgeFromPointToPolygon(P, this));
 }
コード例 #11
0
ファイル: Line.cs プロジェクト: Umqra/GameTask
 public Point IntersectWithSegment(Segment segment)
 {
     return(GeometryOperations.IntersectSegmentLine(segment, this));
 }
コード例 #12
0
 public bool IsPointOnBorder(Point P)
 {
     return(GeometryOperations.IsPointOnPolygonBorder(P, this));
 }
コード例 #13
0
 public bool ContainsPoint(Point P)
 {
     return(GeometryOperations.IsPointInPolygon(P, this));
 }
コード例 #14
0
 public ConvexPolygon(params Point[] points)
 {
     this.points = GeometryOperations.BuildConvexHull(points.ToList());
 }
コード例 #15
0
 public ConvexPolygon(List <Point> points)
 {
     this.points = GeometryOperations.BuildConvexHull(points);
 }
コード例 #16
0
 public ConvexPolygon IntersectWithPolygon(ConvexPolygon other)
 {
     return(GeometryOperations.IntersectPolygons(this, other));
 }