Uses of Class
algoanim.properties.MatrixProperties

Packages that use MatrixProperties
algoanim.animalscript This package contains the generator back-end for AnimalScript
algoanim.primitives   
algoanim.primitives.generators   
 

Uses of MatrixProperties in algoanim.animalscript
 

Methods in algoanim.animalscript with parameters of type MatrixProperties
 DoubleMatrix AnimalScript.newDoubleMatrix(Node upperLeft, double[][] data, java.lang.String name, DisplayOptions display, MatrixProperties iap)
           
 IntMatrix AnimalScript.newIntMatrix(Node upperLeft, int[][] data, java.lang.String name, DisplayOptions display, MatrixProperties iap)
           
 StringMatrix AnimalScript.newStringMatrix(Node upperLeft, java.lang.String[][] data, java.lang.String name, DisplayOptions display, MatrixProperties iap)
           
 

Uses of MatrixProperties in algoanim.primitives
 

Methods in algoanim.primitives that return MatrixProperties
 MatrixProperties StringMatrix.getProperties()
          Returns the properties of this matrix.
 MatrixProperties IntMatrix.getProperties()
          Returns the properties of this matrix.
 MatrixProperties DoubleMatrix.getProperties()
          Returns the properties of this matrix.
 

Constructors in algoanim.primitives with parameters of type MatrixProperties
DoubleMatrix(DoubleMatrixGenerator iag, Node upperLeftCorner, double[][] matrixData, java.lang.String name, DisplayOptions display, MatrixProperties iap)
          Instantiates the DoubleMatrix and calls the create() method of the associated DoubleMatrixGenerator.
IntMatrix(IntMatrixGenerator iag, Node upperLeftCorner, int[][] matrixData, java.lang.String name, DisplayOptions display, MatrixProperties iap)
          Instantiates the IntMatrix and calls the create() method of the associated IntMatrixGenerator.
StringMatrix(StringMatrixGenerator iag, Node upperLeftCorner, java.lang.String[][] matrixData, java.lang.String name, DisplayOptions display, MatrixProperties iap)
          Instantiates the StringMatrix and calls the create() method of the associated StringMatrixGenerator.
 

Uses of MatrixProperties in algoanim.primitives.generators
 

Methods in algoanim.primitives.generators with parameters of type MatrixProperties
abstract  DoubleMatrix Language.newDoubleMatrix(Node upperLeft, double[][] data, java.lang.String name, DisplayOptions display, MatrixProperties imp)
          Creates a new DoubleMatrix object.
abstract  IntMatrix Language.newIntMatrix(Node upperLeft, int[][] data, java.lang.String name, DisplayOptions display, MatrixProperties imp)
          Creates a new IntMatrix object.
abstract  StringMatrix Language.newStringMatrix(Node upperLeft, java.lang.String[][] data, java.lang.String name, DisplayOptions display, MatrixProperties smp)
          Creates a new StringMatrix object.