Uses of Class
javafx.scene.transform.MatrixType
-
Packages that use MatrixType 软件包 描述 javafx.scene.transform 提供一组方便的类来对Affine
对象执行旋转,缩放,剪切和转换转换。 -
-
Uses of MatrixType in javafx.scene.transform
Methods in javafx.scene.transform that return MatrixType Modifier and Type 方法 描述 static MatrixType
MatrixType. valueOf(String name)
以指定的名称返回此类型的枚举常量。static MatrixType[]
MatrixType. values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。Methods in javafx.scene.transform with parameters of type MatrixType Modifier and Type 方法 描述 void
Affine. append(double[] matrix, MatrixType type, int offset)
将数组指定的变换追加到此实例。double[]
Transform. column(MatrixType type, int column)
返回一个包含转换矩阵列的数组。double[]
Transform. column(MatrixType type, int column, double[] array)
返回一个包含转换矩阵列的数组。double
Transform. getElement(MatrixType type, int row, int column)
获取转换矩阵的指定元素。void
Affine. prepend(double[] matrix, MatrixType type, int offset)
将数组指定的变换预置到此实例。double[]
Transform. row(MatrixType type, int row)
返回一个包含转换矩阵行的数组。double[]
Transform. row(MatrixType type, int row, double[] array)
返回一个包含转换矩阵行的数组。void
Affine. setElement(MatrixType type, int row, int column, double value)
设置变换矩阵的指定元素。void
Affine. setToTransform(double[] matrix, MatrixType type, int offset)
将此实例的值设置为由数组指定的转换矩阵。double[]
Transform. toArray(MatrixType type)
返回一个包含展平变换矩阵的数组。double[]
Transform. toArray(MatrixType type, double[] array)
返回一个包含展平变换矩阵的数组。Constructors in javafx.scene.transform with parameters of type MatrixType Constructor 描述 Affine(double[] matrix, MatrixType type, int offset)
使用由数组指定的转换矩阵创建一个新的Affine
实例。
-