This documentation is for the old version. Go to the latest Graphics Mill docs

Curves Constructor (Boolean[], PointF[])

Creates and initializes new Curves class instance. Here you can specify what channels to process in addition to array of points for curve.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Sub New ( _
	channels As Boolean(), _
	points As PointF() _
)
C#
public Curves(
	bool[] channels,
	PointF[] points
)

Parameters

channels

Type: System.Boolean []

Array of flags specifying what channels to apply effect at. If array item is true, transform will be applied at channel with appropriate index. Otherwise this channel is skipped. You can change to this array later through the property Channels.
points

Type: System.Drawing.PointF []

Array of points used to build the curve. You can change it later using Points property.

See Also

Reference