TransformAlgorithmFactory
===============================

.. currentmodule:: axioma.raster

.. class:: TransformAlgorithmFactory

	Фабрика алгоритмов трансформации растров. Данный класс нельзя инстанцировать.

		.. staticmethod:: create(method)

			Фабричный метод

			:param method: Метод трансформации
			:type method: :class:`Method`
			:rtype: :class:`TransformAlgorithmInterface`
			:return: алгоритм трансформации

.. code-block:: python
	:name: sample_code_create
	:caption: Пример использования:

	from axioma.raster import *

	alg = TransformAlgorithmFactory.create(ThinPlateSpline)
