segmentIntersectionSegment static method

Point segmentIntersectionSegment(
  1. Segment segment1,
  2. Segment segment2
)

@brief Calculate the intersection point of two segments @param segment1 first segment of calculation @see Segment "Segment" @param segment2 second segment of calculation @see Segment "Segment" @return intersection point @see Point "Point"

Dart code snippet: @snippet geometry_utils_example.dart dart_GeometryUtils_segmentIntersectionSegment

Implementation

static Point segmentIntersectionSegment(Segment segment1, Segment segment2) => $prototype.segmentIntersectionSegment(segment1, segment2);