reanimate-1.1.6.0: Animation library based on SVGs.
CopyrightWritten by David Himmelstrup
LicenseUnlicense
Maintainerlemmih@gmail.com
Stabilityexperimental
PortabilityPOSIX
Safe HaskellNone
LanguageHaskell2010

Reanimate.Morph.Linear

Description

 
Synopsis

Documentation

linear :: Morph Source #

Linear interpolation strategy.

Example:

playThenReverseA $ pauseAround 0.5 0.5 $ mkAnimation 3 $ \t ->
  withStrokeLineJoin JoinRound $
  let src = scale 8 $ center $ latex "X"
      dst = scale 8 $ center $ latex "H"
  in morph linear src dst t

rawLinear :: Morph Source #

Linear interpolation strategy without realigning corners. May give better results if the polygons are already aligned. Usually gives worse results.

Example:

playThenReverseA $ pauseAround 0.5 0.5 $ mkAnimation 3 $ \t ->
  withStrokeLineJoin JoinRound $
  let src = scale 8 $ center $ latex "X"
      dst = scale 8 $ center $ latex "H"
  in morph rawLinear src dst t

closestLinearCorrespondence :: PointCorrespondence Source #

Cycle polygons until the sum of the point trajectory path lengths is smallest.

closestLinearCorrespondenceA :: (Real a, Fractional a, Epsilon a) => APolygon a -> APolygon a -> (APolygon a, APolygon a) Source #

Cycle polygons until the sum of the point trajectory path lengths is smallest.

linearTrajectory :: Trajectory Source #

Strategy for moving points in a linear (straight-line) trajectory.