Class Quadrangle

Definition

Namespace:
Tizen.Multimedia.Vision
Assembly:
Tizen.Multimedia.Vision.dll
API Level:
4

Represents a region with 4 Points.

C#
Copy
public class Quadrangle
Inheritance
System.Object
Quadrangle

Constructors

View Source

Quadrangle(Point[])

Initializes a new instance of the Quadrangle class with an array of Point.

Declaration
C#
Copy
public Quadrangle(Point[] points)
Parameters
Type Name Description
Point[] points

Four points that define the object bounding quadrangle.

Remarks

points must have 4 elements.

Exceptions
Type Condition
System.ArgumentException

The length of points is not 4.

API Level: 4

Properties

View Source

Points

Gets four points that define the object bounding quadrangle.

Declaration
C#
Copy
public Point[] Points { get; }
Property Value
Type Description
Point[]
API Level: 4

Methods

View Source

ToString()

Returns a string that represents the current object.

Declaration
C#
Copy
public override string ToString()
Returns
Type Description
System.String

A string that represents the current object.

Overrides
System.Object.ToString()
API Level: 4