|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Matrix | |
---|---|
org.geotools.parameter | Parameter implementation. |
org.geotools.referencing.cs | Coordinate systems implementation. |
org.geotools.referencing.datum | Datum implementation. |
org.geotools.referencing.operation | Coordinate operation implementation. |
org.geotools.referencing.operation.matrix | Matrix implementations on top of the javax.vecmath package. |
org.geotools.referencing.operation.transform | Basic implementations of math transforms. |
org.geotools.referencing.piecewise | |
org.geotools.renderer.lite.gridcoverage2d | SLD 1.0 and SE RasterSymbolizer support classes |
org.opengis.referencing.operation | Coordinate operations (relationship between any two coordinate reference systems). |
Uses of Matrix in org.geotools.parameter |
---|
Methods in org.geotools.parameter that return Matrix | |
---|---|
Matrix |
MatrixParameters.getMatrix()
Creates a matrix from this group of parameters. |
Matrix |
MatrixParameterDescriptors.getMatrix(ParameterValueGroup parameters)
Constructs a matrix from a group of parameters. |
Methods in org.geotools.parameter with parameters of type Matrix | |
---|---|
void |
MatrixParameters.setMatrix(Matrix matrix)
Sets all parameter values to the element value in the specified matrix. |
Uses of Matrix in org.geotools.referencing.cs |
---|
Methods in org.geotools.referencing.cs that return Matrix | |
---|---|
static Matrix |
AbstractCS.swapAndScaleAxis(CoordinateSystem sourceCS,
CoordinateSystem targetCS)
Returns an affine transform between two coordinate systems. |
Uses of Matrix in org.geotools.referencing.datum |
---|
Methods in org.geotools.referencing.datum that return Matrix | |
---|---|
static Matrix |
DefaultGeodeticDatum.getAffineTransform(GeodeticDatum source,
GeodeticDatum target)
Returns a matrix that can be used to define a transformation to the specified datum. |
Methods in org.geotools.referencing.datum with parameters of type Matrix | |
---|---|
void |
BursaWolfParameters.setAffineTransform(Matrix matrix,
double eps)
Sets transformation info from the specified matrix, which must be affine. |
Uses of Matrix in org.geotools.referencing.operation |
---|
Methods in org.geotools.referencing.operation that return Matrix | |
---|---|
Matrix |
LinearTransform.getMatrix()
Returns this transform as an affine transform matrix. |
protected Matrix |
AbstractCoordinateOperationFactory.swapAndScaleAxis(CoordinateSystem sourceCS,
CoordinateSystem targetCS)
Returns an affine transform between two coordinate systems. |
Methods in org.geotools.referencing.operation with parameters of type Matrix | |
---|---|
MathTransform |
DefaultMathTransformFactory.createAffineTransform(Matrix matrix)
Creates an affine transform from a matrix. |
protected CoordinateOperation |
AbstractCoordinateOperationFactory.createFromAffineTransform(ReferenceIdentifier name,
CoordinateReferenceSystem sourceCRS,
CoordinateReferenceSystem targetCRS,
Matrix matrix)
Creates a coordinate operation from a matrix, which usually describes an affine tranform. |
Uses of Matrix in org.geotools.referencing.operation.matrix |
---|
Subinterfaces of Matrix in org.geotools.referencing.operation.matrix | |
---|---|
interface |
XMatrix
A matrix capables to perform some matrix operations. |
Classes in org.geotools.referencing.operation.matrix that implement Matrix | |
---|---|
class |
AffineTransform2D
An affine matrix of fixed 3×3 size. |
class |
GeneralMatrix
A two dimensional array of numbers. |
class |
Matrix1
A matrix of fixed 1×1 size. |
class |
Matrix2
A matrix of fixed 2×2 size. |
class |
Matrix3
A matrix of fixed 3×3 size. |
class |
Matrix4
A matrix of fixed 4×4 size. |
Methods in org.geotools.referencing.operation.matrix with parameters of type Matrix | |
---|---|
static XMatrix |
MatrixFactory.create(Matrix matrix)
Creates a new matrix which is a copy of the specified matrix. |
boolean |
XMatrix.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
boolean |
GeneralMatrix.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
boolean |
Matrix2.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
boolean |
Matrix3.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
boolean |
Matrix1.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
boolean |
Matrix4.equals(Matrix matrix,
double tolerance)
Compares the element values regardless the object class. |
static double[][] |
GeneralMatrix.getElements(Matrix matrix)
Retrieves the specifiable values in the transformation matrix into a 2-dimensional array of double precision values. |
void |
XMatrix.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
void |
GeneralMatrix.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
void |
Matrix2.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
void |
Matrix3.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
void |
Matrix1.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
void |
Matrix4.multiply(Matrix matrix)
Sets the value of this matrix to the result of multiplying itself with the specified matrix. |
Constructors in org.geotools.referencing.operation.matrix with parameters of type Matrix | |
---|---|
AffineTransform2D(Matrix matrix)
Creates a new matrix initialized to the same value than the specified one. |
|
GeneralMatrix(Matrix matrix)
Constructs a new matrix and copies the initial values from the parameter matrix. |
|
Matrix1(Matrix matrix)
Creates a new matrix initialized to the same value than the specified one. |
|
Matrix2(Matrix matrix)
Creates a new matrix initialized to the same value than the specified one. |
|
Matrix3(Matrix matrix)
Creates a new matrix initialized to the same value than the specified one. |
|
Matrix4(Matrix matrix)
Creates a new matrix initialized to the same value than the specified one. |
Uses of Matrix in org.geotools.referencing.operation.transform |
---|
Methods in org.geotools.referencing.operation.transform that return Matrix | |
---|---|
static Matrix |
ProjectiveTransform.createSelectMatrix(int sourceDim,
int[] toKeep)
Creates a matrix that keep only a subset of the ordinate values. |
Matrix |
AbstractMathTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
AbstractMathTransform.Inverse.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
ProjectiveTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
PassThroughTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
IdentityTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
LinearTransform1D.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
ConcatenatedTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
AffineTransform2D.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
MathTransformProxy.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
AbstractMathTransform.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Matrix |
AbstractMathTransform.Inverse.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Matrix |
ProjectiveTransform.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Matrix |
ConcatenatedTransform.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Matrix |
AffineTransform2D.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Matrix |
ProjectiveTransform.getMatrix()
Returns a copy of the matrix. |
Matrix |
IdentityTransform.getMatrix()
Returns a copy of the identity matrix. |
Matrix |
LinearTransform1D.getMatrix()
Returns this transform as an affine transform matrix. |
Matrix |
AffineTransform2D.getMatrix()
Returns this transform as an affine transform matrix. |
Methods in org.geotools.referencing.operation.transform with parameters of type Matrix | |
---|---|
static LinearTransform |
ProjectiveTransform.create(Matrix matrix)
Creates a transform for the specified matrix. |
Constructors in org.geotools.referencing.operation.transform with parameters of type Matrix | |
---|---|
ProjectiveTransform(Matrix matrix)
Constructs a transform from the specified matrix. |
Uses of Matrix in org.geotools.referencing.piecewise |
---|
Methods in org.geotools.referencing.piecewise that return Matrix | |
---|---|
Matrix |
DefaultPiecewiseTransform1D.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
DefaultPiecewiseTransform1DElement.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
MathTransform1DAdapter.derivative(DirectPosition point)
|
Uses of Matrix in org.geotools.renderer.lite.gridcoverage2d |
---|
Methods in org.geotools.renderer.lite.gridcoverage2d that return Matrix | |
---|---|
Matrix |
LinearColorMap.derivative(DirectPosition point)
|
Uses of Matrix in org.opengis.referencing.operation |
---|
Methods in org.opengis.referencing.operation that return Matrix | |
---|---|
Matrix |
Matrix.clone()
Returns a clone of this matrix. |
Matrix |
MathTransform.derivative(DirectPosition point)
Gets the derivative of this transform at a point. |
Matrix |
MathTransform2D.derivative(Point2D point)
Gets the derivative of this transform at a point. |
Methods in org.opengis.referencing.operation with parameters of type Matrix | |
---|---|
MathTransform |
MathTransformFactory.createAffineTransform(Matrix matrix)
Creates an affine transform from a matrix. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |