C# Класс StdPaint.Triangle

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

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

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

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

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

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

GetBounds ( ) : Rectangle

Returns a Rectangle that represents the bounding box of this Triangle.

Triangle ( Point a, Point b, Point c ) : System

Initializes a new instance of the Triangle struct with the supplied coordinates.

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

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

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

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

Returns a Rectangle that represents the bounding box of this Triangle.
public GetBounds ( ) : Rectangle
Результат Rectangle

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

Initializes a new instance of the Triangle struct with the supplied coordinates.
public Triangle ( Point a, Point b, Point c ) : System
a Point The first point.
b Point The second point.
c Point The third point.
Результат System

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

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

The first point in the triangle.
public Point A
Результат Point

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

The second point in the triangle.
public Point B
Результат Point

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

The third point in the triangle.
public Point C
Результат Point