1 /**
2 * This module provides various transformation functions that can be performed
3 * on images. Transform functions differ from filters (:d:mod:`daffodil.filter`)
4 * in that they can be performed in-place.
5 */
6 module daffodil.transform;
7
8 public {
9 import daffodil.transform.flip;
10 }