C# Class Vertesaur.SegmentOperation.SegmentIntersectionOperation.SegmentResult

A segment intersection result.
Occurs when two parallel lines intersect.
Inheritance: IResult
Show file Open project: aarondandy/vertesaur

Public Properties

Property Type Description
A PointResult
B PointResult

Private Properties

Property Type Description

Public Methods

Method Description
SegmentResult ( PointResult a, PointResult b ) : System

Constructs a new segment intersection result.

Method Details

SegmentResult() public method

Constructs a new segment intersection result.
public SegmentResult ( PointResult a, PointResult b ) : System
a PointResult The first point intersection defining an end of the segment intersection.
b PointResult The second point intersection defining an end of the segment intersection.
return System

Property Details

A public property

The first point intersection defining an end of the segment intersection.
public PointResult A
return PointResult

B public property

The second point intersection defining an end of the segment intersection.
public PointResult B
return PointResult