All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.AffineTransform

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.AffineTransform

public class AffineTransform
extends NativeObject
implements Coding
This class wraps the Objective-C class NSAffineTransform.


Constructor Index

 o AffineTransform()
This default constructor is equivalent to Objective-C's [[NSAffineTransform alloc] init].
 o AffineTransform(AffineTransform)
This constructor has the same effect as calling - initWithTransform: on a newly allocated object.
 o AffineTransform(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o AffineTransform(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o appendTransform(AffineTransform)
A wrapper for the - appendTransform: Objective-C instance method.
 o concat()
A wrapper for the - concat Objective-C instance method.
 o encodeWithCoder(Coder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).
 o invert()
A wrapper for the - invert Objective-C instance method.
 o prependTransform(AffineTransform)
A wrapper for the - prependTransform: Objective-C instance method.
 o rotateByDegrees(float)
A wrapper for the - rotateByDegrees: Objective-C instance method.
 o rotateByRadians(float)
A wrapper for the - rotateByRadians: Objective-C instance method.
 o scaleBy(float)
A wrapper for the - scaleBy: Objective-C instance method.
 o scaleXYBy(float, float)
A wrapper for the - scaleXBy:yBy: Objective-C instance method.
 o set()
A wrapper for the - set Objective-C instance method.
 o transform()
A wrapper for the + transform Objective-C class method.
 o transformBezierPath(BezierPath)
A wrapper for the - transformBezierPath: Objective-C instance method.
 o transformPoint(Point)
A wrapper for the - transformPoint: Objective-C instance method.
 o transformSize(Size)
A wrapper for the - transformSize: Objective-C instance method.
 o translateXYBy(float, float)
A wrapper for the - translateXBy:yBy: Objective-C instance method.

Constructors

 o AffineTransform
 protected AffineTransform(boolean shouldAllocate,
                           int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o AffineTransform
 public AffineTransform()
This default constructor is equivalent to Objective-C's [[NSAffineTransform alloc] init].

 o AffineTransform
 public AffineTransform(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

 o AffineTransform
 public AffineTransform(AffineTransform aTransform)
This constructor has the same effect as calling - initWithTransform: on a newly allocated object.

Methods

 o transform
 public static native AffineTransform transform()
A wrapper for the + transform Objective-C class method.

 o translateXYBy
 public native void translateXYBy(float deltaX,
                                  float deltaY)
A wrapper for the - translateXBy:yBy: Objective-C instance method.

 o rotateByDegrees
 public native void rotateByDegrees(float angle)
A wrapper for the - rotateByDegrees: Objective-C instance method.

 o rotateByRadians
 public native void rotateByRadians(float angle)
A wrapper for the - rotateByRadians: Objective-C instance method.

 o scaleBy
 public native void scaleBy(float scale)
A wrapper for the - scaleBy: Objective-C instance method.

 o scaleXYBy
 public native void scaleXYBy(float scaleX,
                              float scaleY)
A wrapper for the - scaleXBy:yBy: Objective-C instance method.

 o invert
 public native void invert()
A wrapper for the - invert Objective-C instance method.

 o appendTransform
 public native void appendTransform(AffineTransform aTransform)
A wrapper for the - appendTransform: Objective-C instance method.

 o prependTransform
 public native void prependTransform(AffineTransform aTransform)
A wrapper for the - prependTransform: Objective-C instance method.

 o transformPoint
 public native Point transformPoint(Point aPoint)
A wrapper for the - transformPoint: Objective-C instance method.

 o transformSize
 public native Size transformSize(Size aSize)
A wrapper for the - transformSize: Objective-C instance method.

 o transformBezierPath
 public native BezierPath transformBezierPath(BezierPath aPath)
A wrapper for the - transformBezierPath: Objective-C instance method.

 o set
 public native void set()
A wrapper for the - set Objective-C instance method.

 o concat
 public native void concat()
A wrapper for the - concat Objective-C instance method.

 o encodeWithCoder
 public native void encodeWithCoder(Coder aCoder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).


All Packages  Class Hierarchy  This Package  Previous  Next  Index