Shearing a Shape with AffineTransform : Transform « 2D Graphics GUI « Java






Shearing a Shape with AffineTransform

   

import java.awt.Rectangle;
import java.awt.Shape;
import java.awt.geom.AffineTransform;

public class BasicShapes {
  public static void main(String[] args) {
    AffineTransform tx = new AffineTransform();
    tx.shear(1, 1);
    Rectangle shape = new Rectangle(1, 1, 1, 1);
    Shape newShape = tx.createTransformedShape(shape);

  }
}

   
    
    
  








Related examples in the same category

1.Coordinate DemoCoordinate Demo
2.Rotation and coordinate translation
3.Scaling an object
4.Transform DemoTransform Demo
5.Transform ShearTransform Shear
6.Transform ScaleTransform Scale
7.Transform Rotation Translation Transform Rotation Translation
8.Transforme Rotation demoTransforme Rotation demo
9.Transform Translation and RotationTransform Translation and Rotation
10.Transform Translated RotationTransform Translated Rotation
11.Transform TranslationTransform Translation
12.Line transformation, rotation, shear,scale Line transformation, rotation, shear,scale
13.AffineTransform demoAffineTransform demo
14.Scaling a Drawn Image
15.Shearing a Drawn Image
16.Translating a Drawn Image
17.Rotating a Drawn Image
18.Create an complex shape by rotating an ellipse.
19.Scaling a Shape with AffineTransform
20.Perform shearing: use share() method.
21.Translating a Shape with AffineTransform
22.Rotating a Shape with AffineTransform
23.Rotating image using Java 2D AffineTransform class
24.Rotates a shape about the specified coordinates.
25.Resizes or translates a Shape
26.Creates and returns a translated shape.