public class CompositeTransform extends Transform
A transform that represents zero or more transforms executed in series.
Methods
concatenate(Transform other)
public CompositeTransform concatenate(Transform other)
Concatenates a transform to the end of this composite transform.
Parameter | |
---|---|
Name | Description |
other |
Transform the transform to be appended |
Returns | |
---|---|
Type | Description |
CompositeTransform |
this transform with the other transform appended |
preConcatenate(Transform other)
public CompositeTransform preConcatenate(Transform other)
Concatenates a transform to the start of this composite transform.
Parameter | |
---|---|
Name | Description |
other |
Transform the transform to be prepended |
Returns | |
---|---|
Type | Description |
CompositeTransform |
this transform with the other transform prepended |