C# 클래스 Vertesaur.SegmentOperation.SegmentIntersectionOperation.PointResult

A point intersection result.
파일 보기 프로젝트 열기: aarondandy/vertesaur

공개 프로퍼티들

프로퍼티 타입 설명
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