:mod:`neuron_morphology.transforms.transform_base` ================================================== .. py:module:: neuron_morphology.transforms.transform_base Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: neuron_morphology.transforms.transform_base.TransformBase .. py:class:: TransformBase Bases: :class:`abc.ABC` Abstract base class for implementing swc transforms. Each child class should implement these methods. .. !! processed by numpydoc !! .. method:: transform_morphology(self) Apply this transform to all nodes in a morphology. :Returns: A Morphology .. .. !! processed by numpydoc !! .. method:: transform(self) Apply this transform to (3,) point or (3,n) array-like of points. :Returns: numpy.ndarray with same shape as input .. .. !! processed by numpydoc !!