Uses of Class
org.citygml4j.geometry.Matrix

Packages that use Matrix
org.citygml4j.factory   
org.citygml4j.geometry   
org.citygml4j.impl.citygml.appearance   
org.citygml4j.impl.citygml.core   
org.citygml4j.impl.gml.geometry.primitives   
org.citygml4j.model.citygml.core   
org.citygml4j.model.gml.geometry.primitives   
 

Uses of Matrix in org.citygml4j.factory
 

Methods in org.citygml4j.factory with parameters of type Matrix
 TransformationMatrix2x2 CityGMLFactory.createTransformationMatrix2x2(Matrix matrix)
           
 TransformationMatrix3x4 CityGMLFactory.createTransformationMatrix3x4(Matrix matrix)
           
 TransformationMatrix4x4 CityGMLFactory.createTransformationMatrix4x4(Matrix matrix)
           
 Vector GMLFactory.createVector(Matrix matrix)
           
 

Uses of Matrix in org.citygml4j.geometry
 

Methods in org.citygml4j.geometry that return Matrix
static Matrix Matrix.identity(int m, int n)
           
 Matrix Matrix.minus(Matrix B)
           
 Matrix Matrix.minusEquals(Matrix B)
           
 Matrix Matrix.plus(Matrix B)
           
 Matrix Matrix.plusEquals(Matrix B)
           
static Matrix Matrix.random(int m, int n)
           
 Matrix Matrix.times(double s)
           
 Matrix Matrix.times(Matrix B)
           
 Matrix Matrix.timesEquals(double s)
           
 Matrix Matrix.transpose()
           
 Matrix Matrix.uminus()
           
 

Methods in org.citygml4j.geometry with parameters of type Matrix
 boolean Matrix.eq(Matrix B)
           
 Matrix Matrix.minus(Matrix B)
           
 Matrix Matrix.minusEquals(Matrix B)
           
 Matrix Matrix.plus(Matrix B)
           
 Matrix Matrix.plusEquals(Matrix B)
           
 Matrix Matrix.times(Matrix B)
           
 

Constructors in org.citygml4j.geometry with parameters of type Matrix
Matrix(Matrix m)
           
 

Uses of Matrix in org.citygml4j.impl.citygml.appearance
 

Constructors in org.citygml4j.impl.citygml.appearance with parameters of type Matrix
WorldToTextureImpl(Matrix matrix)
           
 

Uses of Matrix in org.citygml4j.impl.citygml.core
 

Methods in org.citygml4j.impl.citygml.core that return Matrix
 Matrix TransformationMatrix4x4Impl.getMatrix()
           
 Matrix TransformationMatrix3x4Impl.getMatrix()
           
 Matrix TransformationMatrix2x2Impl.getMatrix()
           
 

Methods in org.citygml4j.impl.citygml.core with parameters of type Matrix
 void TransformationMatrix4x4Impl.setMatrix(Matrix matrix)
           
 void TransformationMatrix3x4Impl.setMatrix(Matrix matrix)
           
 void TransformationMatrix2x2Impl.setMatrix(Matrix matrix)
           
 

Constructors in org.citygml4j.impl.citygml.core with parameters of type Matrix
TransformationMatrix2x2Impl(Matrix matrix)
           
TransformationMatrix3x4Impl(Matrix matrix)
           
TransformationMatrix4x4Impl(Matrix matrix)
           
 

Uses of Matrix in org.citygml4j.impl.gml.geometry.primitives
 

Methods in org.citygml4j.impl.gml.geometry.primitives that return Matrix
 Matrix VectorImpl.toMatrix()
           
 

Constructors in org.citygml4j.impl.gml.geometry.primitives with parameters of type Matrix
VectorImpl(Matrix matrix)
           
 

Uses of Matrix in org.citygml4j.model.citygml.core
 

Methods in org.citygml4j.model.citygml.core that return Matrix
 Matrix TransformationMatrix4x4.getMatrix()
           
 Matrix TransformationMatrix3x4.getMatrix()
           
 Matrix TransformationMatrix2x2.getMatrix()
           
 

Methods in org.citygml4j.model.citygml.core with parameters of type Matrix
 void TransformationMatrix4x4.setMatrix(Matrix matrix)
           
 void TransformationMatrix3x4.setMatrix(Matrix matrix)
           
 void TransformationMatrix2x2.setMatrix(Matrix matrix)
           
 

Uses of Matrix in org.citygml4j.model.gml.geometry.primitives
 

Methods in org.citygml4j.model.gml.geometry.primitives that return Matrix
 Matrix Vector.toMatrix()