C# Класс StdPaint.Triangle3f

Represents a set of three three-dimensional floating-point vectors.
Показать файл Открыть проект Примеры использования класса

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

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

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

Метод Описание
GetArea ( Vector3 a, Vector3 b, Vector3 c ) : double

Returns the area of the triangle made from the specified vectors.

Triangle3f ( Vector3 a, Vector3 b, Vector3 c ) : System

Initializes a new instance of the StdPaint.Trangle3f structure with the specified vectors.

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

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

Returns the area of the triangle made from the specified vectors.
public static GetArea ( Vector3 a, Vector3 b, Vector3 c ) : double
a Vector3 The first point.
b Vector3 The second point.
c Vector3 The third point.
Результат double

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

Initializes a new instance of the StdPaint.Trangle3f structure with the specified vectors.
public Triangle3f ( Vector3 a, Vector3 b, Vector3 c ) : System
a Vector3 The first vector.
b Vector3 The second vector.
c Vector3 The third vector.
Результат System

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

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

The first vector.
public Vector3 A
Результат Vector3

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

The second vector.
public Vector3 B
Результат Vector3

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

The third vector.
public Vector3 C
Результат Vector3