C# Класс Nexus.Objects3D.Triangle3D

Показать файл Открыть проект

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

Свойство Тип Описание
A Point3D
B Point3D
C Point3D

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

Метод Описание
Area2D ( float x1, float y1, float x2, float y2, float x3, float y3 ) : float
Barycentric ( Point3D p ) : Vector3D

Compute barycentric coordinates (u, v, w) for point p with respect to this triangle. Real Time Collision Detection, p47.

Triangle3D ( Point3D a, Point3D b, Point3D c )

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

Area2D() публичный статический Метод

public static Area2D ( float x1, float y1, float x2, float y2, float x3, float y3 ) : float
x1 float
y1 float
x2 float
y2 float
x3 float
y3 float
Результат float

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

Compute barycentric coordinates (u, v, w) for point p with respect to this triangle. Real Time Collision Detection, p47.
public Barycentric ( Point3D p ) : Vector3D
p Point3D
Результат Vector3D

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

public Triangle3D ( Point3D a, Point3D b, Point3D c )
a Point3D
b Point3D
c Point3D

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

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

public Point3D A
Результат Point3D

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

public Point3D B
Результат Point3D

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

public Point3D C
Результат Point3D