C# Class Vertesaur.SegmentOperation.SegmentIntersectionOperation.PointResult

A point intersection result.
Afficher le fichier Open project: aarondandy/vertesaur

Méthodes publiques

Свойство Type Description
P Point2
S double
T double

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
PointResult ( Point2 p, double s, double t ) : System

Constructs a new point intersection result.

Method Details

PointResult() public méthode

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

Property Details

P public_oe property

The intersection location.
public Point2 P
Résultat Point2

S public_oe property

The ratio along the first segment.
public double S
Résultat double

T public_oe property

The ratio along the second segment.
public double T
Résultat double