C# Class Vertesaur.SegmentOperation.SegmentIntersectionOperation.SegmentResult

A segment intersection result.
Occurs when two parallel lines intersect.
Inheritance: IResult
Afficher le fichier Open project: aarondandy/vertesaur

Méthodes publiques

Свойство Type Description
A PointResult
B PointResult

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
SegmentResult ( PointResult a, PointResult b ) : System

Constructs a new segment intersection result.

Method Details

SegmentResult() public méthode

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.
Résultat System

Property Details

A public_oe property

The first point intersection defining an end of the segment intersection.
public PointResult A
Résultat PointResult

B public_oe property

The second point intersection defining an end of the segment intersection.
public PointResult B
Résultat PointResult