TransformBuilder Class

TransformBuilder class

Builder class for creating SVG transform attribute strings.

public class TransformBuilder

Constructors

NameDescription
TransformBuilder()The default constructor.

Methods

NameDescription
Build()Builds the transform attribute string.
Matrix(double, double, double, double, double, double)Adds a matrix transform to the builder.
Rotate(double, double, double)Adds a rotate transform to the builder.
Scale(double, double)Adds a scale transform to the builder.
SkewX(double)Adds a skewX transform to the builder.
SkewY(double)Adds a skewY transform to the builder.
Translate(double, double)Adds a translate transform to the builder.

See Also