001/******************************************************************************* 002 * This software is provided as a supplement to the authors' textbooks on digital 003 * image processing published by Springer-Verlag in various languages and editions. 004 * Permission to use and distribute this software is granted under the BSD 2-Clause 005 * "Simplified" License (see http://opensource.org/licenses/BSD-2-Clause). 006 * Copyright (c) 2006-2023 Wilhelm Burger, Mark J. Burge. All rights reserved. 007 * Visit https://imagingbook.com for additional details. 008 ******************************************************************************/ 009 010package imagingbook.common.geometry.mappings.linear; 011 012/** 013 * <p> 014 * This class represents a 2D shear transformation (as a special case of affine transformation). See Secs. 21.1.3 and 015 * 21.3.1 of [1] for details. 016 * </p> 017 * <p> 018 * [1] W. Burger, M.J. Burge, <em>Digital Image Processing – An Algorithmic Introduction</em>, 3rd ed, Springer 019 * (2022). 020 * </p> 021 * 022 * @author WB 023 */ 024public class Shear2D extends AffineMapping2D { 025 026 /** 027 * Constructor, creates a shear transform. 028 * 029 * @param bx shear factor in x-direction 030 * @param by shear factor in y-direction 031 */ 032 public Shear2D(double bx, double by) { 033 super( // calls constructor of AffineMapping 034 1, bx, 0, 035 by, 1, 0); 036 } 037 038 public Shear2D(Shear2D sh) { 039 super(sh); 040 } 041 042 /** 043 * {@inheritDoc} 044 * @return a new shear mapping 045 */ 046 @Override 047 public Shear2D duplicate() { 048 return new Shear2D(this); 049 } 050 051} 052 053