Table of Contents

Class OverlayManagerBackgroundTriangle

Namespace
VisioForge.Core.Types.X.VideoEffects
Assembly
VisioForge.Core.dll

Represents a triangular background for the overlay manager defined by three points. Implements the VisioForge.Core.Types.X.VideoEffects.IOverlayManagerBackground

public class OverlayManagerBackgroundTriangle : IOverlayManagerBackground

Inheritance

Implements

Inherited Members

Constructors

OverlayManagerBackgroundTriangle(SKPoint, SKPoint, SKPoint)

Initializes a new instance of the VisioForge.Core.Types.X.VideoEffects.OverlayManagerBackgroundTriangle class.

public OverlayManagerBackgroundTriangle(SKPoint p1, SKPoint p2, SKPoint p3)

Parameters

p1 SKPoint

The first point of the triangle.

p2 SKPoint

The second point of the triangle.

p3 SKPoint

The third point of the triangle.

Properties

Color

Gets or sets the color.

public SKColor Color { get; set; }

Property Value

SKColor

Points

Gets the points.

public SKPoint[] Points { get; }

Property Value

SKPoint[]

See Also