|
Generated by JDiff |
||||||||
PREV PACKAGE NEXT PACKAGE FRAMES NO FRAMES |
This file contains all the changes in documentation in the packagecom.itextpdf.kernel.geom
as colored differences. Deletions are shownlike this, and additions are shown like this.
If no deletions or additions are shown in an entry, the HTML tags will be what has changed. The new HTML tags are shown in the differences. If no documentation existed, and then some was added in a later version, this change is noted in the appropriate class pages of differences, but the change is not shown on this page. Only changes in existing text are shown here. Similarly, documentation which was inherited from another class or interface is not shown here.
Note that an HTML error in the new documentation may cause the display of other documentation changes to be presented incorrectly. For instance, failure to close a tag will cause all subsequent paragraphs to be displayed differently.
Constructs a matrix that representsClass Matrix, constructor Matrix(float, float, float, float, float, float)translationtranslation. @param tx x-axis translation @param ty y-axis translation
Creates a Matrix with 6 specifiedClass Matrix, constructor Matrix(float, float, float, float, float, float, float, float, float)entriesentries. The third column will always be [0 0 1] (row, column)@param a element at (1,1) @param b element at (1,2) @param c element at (2,1) @param d element at (2,2) @param e element at (3,1) @param f element at (3,2)
Creates a Matrix with 9 specifiedClass Matrix, Matrix add(Matrix)entriesentries. @param e11 element at position (1,1) @param e12 element at position (1,2) @param e13 element at position (1,3) @param e21 element at position (2,1) @param e22 element at position (2,2) @param e23 element at position (2,3) @param e31 element at position (3,1) @param e32 element at position (3,2) @param e33 element at position (3,3)
Class Matrix, boolean equals(Object)addsAdds a matrix from this matrix and returns theresultsresults. @param arg the matrix to subtract from this matrix @return a Matrix object
Checks equality of matrices.Class Matrix, float get(int)@paramobj theobj the other Matrix that needs to be compared with this matrix. @return truereturn true if both matrices are equal @see java.lang.Object#equals(java.lang.Object)
Gets a specific value inside the matrix.Class Matrix, float getDeterminant()For reference, the indeces are as follows:
I11 I12I13I13
I21 I22I23I23
I31 I32I33I33 @param index anparam index an array index corresponding with a value inside the matrix @return thereturn the value at that specific position.
Computes the determinant of the matrix.Class Matrix, int hashCode()@return the determinant of the matrix
Generates a hash code for this object.Class Matrix, Matrix multiply(Matrix)@return the hash code of this object @see java.lang.Object#hashCode()
multiplies this matrix by 'b' and returns theClass Matrix, Matrix subtract(Matrix)resultresult. See http://en.wikipedia.org/wiki/Matrix_multiplicationmultiplication @param by The matrix to multiply by @return thereturn the resulting matrix
Subtracts a matrix from this matrix and returns theClass Matrix, String toString()resultsresults. @param arg the matrix to subtract from this matrix @return a Matrix object
Generates a String representation of the matrix.@return the values, delimited with tabs and newlines. @see java.lang.Object#toString()