| パッケージ | 説明 |
|---|---|
| javafx.scene.transform |
Affineオブジェクトの回転、スケーリング、切断および変換を実行する便利なクラスのセットを提供します。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
static MatrixType |
MatrixType.valueOf(String name)
指定された名前を持つ、この型の列挙型定数を返します。
|
static MatrixType[] |
MatrixType.values()
この列挙型の定数を含む配列を、宣言されている順序で返します。
|
| 修飾子と型 | メソッドと説明 |
|---|---|
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)
フラット化された変換行列を含む配列を返します。
|
| コンストラクタと説明 |
|---|
Affine(double[] matrix, MatrixType type, int offset)
変換行列を配列で指定して
Affineの新しいインスタンスを作成します。 |
Copyright (c) 2008, 2015, Oracle and/or its affiliates. All rights reserved.