javamorph
Class CTransform

java.lang.Object
  extended by javamorph.CTransform

public class CTransform
extends Object

Version:
1.0
Author:
claus.erhard.wimmer@googlemail.com
Program: JavaMorph V 1.0.
Class: CTransform.
License: GPLv2.
Description: Affine transform matrix.
Hint: Example: a_rc -> r = row_in_matrix, c = column in matrix. Row != Column because inversion is not necessary.
Usage: M * P' = P (M...Matrix, P'...Result Point, P...Origin Point).

Field Summary
(package private)  double a_11
          Matrix factor.
(package private)  double a_12
          Matrix factor.
(package private)  double a_13
          Matrix factor.
(package private)  double a_21
          Matrix factor.
(package private)  double a_22
          Matrix factor.
(package private)  double a_23
          Matrix factor.
 
Constructor Summary
CTransform()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

a_11

double a_11
Matrix factor. Row = 1, Column = 1.


a_12

double a_12
Matrix factor. Row = 1, Column = 2.


a_13

double a_13
Matrix factor. Row = 1, Column = 3.


a_21

double a_21
Matrix factor. Row = 2, Column = 1.


a_22

double a_22
Matrix factor. Row = 2, Column = 2.


a_23

double a_23
Matrix factor. Row = 2, Column = 3.

Constructor Detail

CTransform

public CTransform()