Generic function
Creates a new transform by composing a transform with the given translation.
compose-translation-with-transform transform dx dy => transform
<transform>.
<real>.
<real>.
<transform>.
duim-geometryduim-geometryCreates a new transform by composing the transform transform with the given translation. The order of composition is that the translation transform is applied first, followed by the argument transform.
The argument dx represents the delta by which to translate the x coordinate.
The argument dy represents the delta by which to translate the y coordinate.
Note that this function could be implemented by using make-translation-transform and compose-transforms. It is provided, because it is common to build up a transform as a series of simple transforms.
See the functions make-translation-transform, page 43 and compose-transforms, page 23.