pub trait MapPointwise<T> {
    fn transform<F>(&self, transformation: F) -> Self
    where
        F: Fn(Point<T>) -> Point<T>
; }
Expand description

Transform the geometrical object by transforming each point of it.

Required Methods

Point wise transformation.

Implementors

Point wise transformation for a single point.

Point wise transformation of the two corner points.

Point wise transformation for a single point.