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

Cylindrize Constructor (Single, Single, Single)

Creates new Cylindrize class instance. You can set here cylinder parameters (half-perimeter and height) and slope angle.

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

Syntax

Visual Basic
Public Sub New ( _
	slopeAngle As Single, _
	cylinderHalfPerimeter As Single, _
	cylinderHeight As Single _
)
C#
public Cylindrize(
	float slopeAngle,
	float cylinderHalfPerimeter,
	float cylinderHeight
)

Parameters

slopeAngle

Type: System.Single

Slope angle of the cylinder. It can be changed later via SlopeAngle property.
cylinderHalfPerimeter

Type: System.Single

Positive number specifying half-perimeter of the cylinder. You can also specify -1. In this case width of the bitmap will be taken. This value can be changed later via CylinderHalfPerimeter property.
cylinderHeight

Type: System.Single

Positive number specifying height of the cylinder. You can also specify -1. In this case height of the bitmap will be taken. This value can be changed later via CylinderHeight property.

See Also

Reference