Uses of Class
imagingbook.common.geometry.mappings.linear.AffineMapping2D
Packages that use AffineMapping2D
-
Uses of AffineMapping2D in imagingbook.common.geometry.mappings.linear
Subclasses of AffineMapping2D in imagingbook.common.geometry.mappings.linearModifier and TypeClassDescriptionclass
This class represents a pure 2D rotation about the coordinate origin (as a special case of affine mapping).class
This class represents a 2D scaling transformation (as a special case of affine transformation).class
This class represents a 2D shear transformation (as a special case of affine transformation).class
This class represents a pure 2D translation (as a special case of affine transformation).Methods in imagingbook.common.geometry.mappings.linear that return AffineMapping2DModifier and TypeMethodDescriptionAffineMapping2D.concat
(AffineMapping2D B) Concatenates this mapping A with another affine mapping B and returns a new mapping C, such that C(x) = B(A(x)).AffineMapping2D.duplicate()
Returns a copy of this mapping.static AffineMapping2D
AffineMapping2D.fromPoints
(Pnt2d[] P, Pnt2d[] Q) Creates an affine 2D mapping from two sequences of corresponding points.static AffineMapping2D
Creates an affine mapping from 3 pairs of corresponding 2D points (p0, p1, p2) → (q0, q1, q2).AffineMapping2D.getInverse()
Calculates and returns the inverse mapping.Methods in imagingbook.common.geometry.mappings.linear with parameters of type AffineMapping2DModifier and TypeMethodDescriptionAffineMapping2D.concat
(AffineMapping2D B) Concatenates this mapping A with another affine mapping B and returns a new mapping C, such that C(x) = B(A(x)).Constructors in imagingbook.common.geometry.mappings.linear with parameters of type AffineMapping2DModifierConstructorDescriptionCreates a new affine mapping from an existing affine mapping.