C# Класс Vertesaur.SegmentOperation.SegmentIntersectionOperation.PointResult

A point intersection result.
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
P Point2
S double
T double

Private Properties

Свойство Тип Описание

Открытые методы

Метод Описание
PointResult ( Point2 p, double s, double t ) : System

Constructs a new point intersection result.

Описание методов

PointResult() публичный Метод

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.
Результат System

Описание свойств

P публичное свойство

The intersection location.
public Point2 P
Результат Point2

S публичное свойство

The ratio along the first segment.
public double S
Результат double

T публичное свойство

The ratio along the second segment.
public double T
Результат double