C# 클래스 StdPaint.Triangle3f

Represents a set of three three-dimensional floating-point vectors.
파일 보기 프로젝트 열기: TheBerkin/StdPaint 1 사용 예제들

공개 프로퍼티들

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