C# Class Vertesaur.SegmentOperation.SegmentIntersectionOperation.PointResult

A point intersection result.
Show file Open project: aarondandy/vertesaur

Public Properties

Property Type Description
P Point2
S double
T double

Private Properties

Property Type Description

Public Methods

Method Description
PointResult ( Point2 p, double s, double t ) : System

Constructs a new point intersection result.

Method Details

PointResult() public method

Constructs a new point intersection result.
public PointResult ( Point2 p, double s, double t ) : System
p Point2 The intersection location.
s double The ratio along the first segment.
t double The ratio along the second segment.
return System

Property Details

P public property

The intersection location.
public Point2 P
return Point2

S public property

The ratio along the first segment.
public double S
return double

T public property

The ratio along the second segment.
public double T
return double