TransformedStroke

Inheritance: java.lang.Object

All Implemented Interfaces: java.awt.Stroke

public class TransformedStroke implements Stroke

A stroke that contains transformation.

Constructors

ConstructorDescription
TransformedStroke(Stroke base, AffineTransform at)Creates a TransformedStroke based on another Stroke and an AffineTransform.

Methods

MethodDescription
createStrokedShape(Shape s)Strokes the given Shape with this stroke, creating an outline.
equals(Object arg0)
getBaseStroke()Gets basic stroke.
getClass()
getTransform()Gets a transformation.
hashCode()
notify()
notifyAll()
toString()
wait()
wait(long arg0)
wait(long arg0, int arg1)

TransformedStroke(Stroke base, AffineTransform at)

public TransformedStroke(Stroke base, AffineTransform at)

Creates a TransformedStroke based on another Stroke and an AffineTransform.

Parameters:

ParameterTypeDescription
basejava.awt.StrokeThe stroke base.
atjava.awt.geom.AffineTransformThe affine transformation.

createStrokedShape(Shape s)

public Shape createStrokedShape(Shape s)

Strokes the given Shape with this stroke, creating an outline. This outline is distorted by our AffineTransform relative to the outline which would be given by the base stroke, but only in terms of scaling (i.e. thickness of the lines), as translation and rotation are undone after the stroking.

Parameters:

ParameterTypeDescription
sjava.awt.ShapeAs shape to be outlined.

Returns: java.awt.Shape - An outline of the shape.

equals(Object arg0)

public boolean equals(Object arg0)

Parameters:

ParameterTypeDescription
arg0java.lang.Object

Returns: boolean

getBaseStroke()

public Stroke getBaseStroke()

Gets basic stroke.

Returns: java.awt.Stroke - Basic stroke.

getClass()

public final native Class<?> getClass()

Returns: java.lang.Class

getTransform()

public AffineTransform getTransform()

Gets a transformation.

Returns: java.awt.geom.AffineTransform - A transformation.

hashCode()

public native int hashCode()

Returns: int

notify()

public final native void notify()

notifyAll()

public final native void notifyAll()

toString()

public String toString()

Returns: java.lang.String

wait()

public final void wait()

wait(long arg0)

public final native void wait(long arg0)

Parameters:

ParameterTypeDescription
arg0long

wait(long arg0, int arg1)

public final void wait(long arg0, int arg1)

Parameters:

ParameterTypeDescription
arg0long
arg1int