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

UnsignedRational Constructor (UInt32, UInt32)

Creates new UnsignedRational instance with specified dividend and divider.

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

Syntax

Visual Basic
Public Sub New ( _
	dividend As UInteger, _
	divider As UInteger _
)
C#
public UnsignedRational(
	uint dividend,
	uint divider
)

Parameters

dividend

Type: System.UInt32

Value that specifies dividend of the rational number (i.e. if represent rational number as p/q, dividend is p). You can change it later using Dividend property.
divider

Type: System.UInt32

Value that specifies divider of the rational number (i.e. if represent rational number as p/q, divider is q). You can change it later using Divider property.

See Also

Reference