- java.lang.Object
-
- javafx.scene.effect.FloatMap
-
public class FloatMap extends Object
DisplacementMapなどの効果のパラメータとして使用される浮動小数点データが格納されるバッファです。- 導入されたバージョン:
- JavaFX 2.0
-
-
プロパティのサマリー
プロパティ Type プロパティ 説明 IntegerPropertyheightマップの高さ(ピクセル)。IntegerPropertywidthマップの幅(ピクセル)。
-
メソッドのサマリー
すべてのメソッド インスタンス・メソッド 具象メソッド 修飾子と型 メソッド 説明 intgetHeight()プロパティheightの値を取得します。intgetWidth()プロパティwidthの値を取得します。IntegerPropertyheightProperty()マップの高さ(ピクセル)。voidsetHeight(int value)プロパティheightの値を設定します。voidsetSample(int x, int y, int band, float s)指定された(x,y)位置の特定のバンドのサンプルを設定します。voidsetSamples(int x, int y, float s0)指定された(x,y)位置の最初のバンドのサンプルを設定します。voidsetSamples(int x, int y, float s0, float s1)指定された(x,y)位置の最初の2つのバンドのサンプルを設定します。voidsetSamples(int x, int y, float s0, float s1, float s2)指定された(x,y)位置の最初の3つのバンドのサンプルを設定します。voidsetSamples(int x, int y, float s0, float s1, float s2, float s3)指定された(x,y)位置の4つの各バンドのサンプルを設定します。voidsetWidth(int value)プロパティwidthの値を設定します。IntegerPropertywidthProperty()マップの幅(ピクセル)。
-
-
-
プロパティの詳細
-
width
public final IntegerProperty widthProperty
マップの幅(ピクセル)。Min: 1 Max: 4096 Default: 1 Identity: n/a- デフォルト値:
- 1
- 関連項目:
getWidth()、setWidth(int)
-
height
public final IntegerProperty heightProperty
マップの高さ(ピクセル)。Min: 1 Max: 4096 Default: 1 Identity: n/a- デフォルト値:
- 1
- 関連項目:
getHeight()、setHeight(int)
-
-
メソッドの詳細
-
setWidth
public final void setWidth(int value)
プロパティwidthの値を設定します。- プロパティの説明:
- マップの幅(ピクセル)。
Min: 1 Max: 4096 Default: 1 Identity: n/a - デフォルト値:
- 1
-
getWidth
public final int getWidth()
プロパティwidthの値を取得します。- プロパティの説明:
- マップの幅(ピクセル)。
Min: 1 Max: 4096 Default: 1 Identity: n/a - デフォルト値:
- 1
-
widthProperty
public final IntegerProperty widthProperty()
マップの幅(ピクセル)。Min: 1 Max: 4096 Default: 1 Identity: n/a- デフォルト値:
- 1
- 関連項目:
getWidth()、setWidth(int)
-
setHeight
public final void setHeight(int value)
プロパティheightの値を設定します。- プロパティの説明:
- マップの高さ(ピクセル)。
Min: 1 Max: 4096 Default: 1 Identity: n/a - デフォルト値:
- 1
-
getHeight
public final int getHeight()
プロパティheightの値を取得します。- プロパティの説明:
- マップの高さ(ピクセル)。
Min: 1 Max: 4096 Default: 1 Identity: n/a - デフォルト値:
- 1
-
heightProperty
public final IntegerProperty heightProperty()
マップの高さ(ピクセル)。Min: 1 Max: 4096 Default: 1 Identity: n/a- デフォルト値:
- 1
- 関連項目:
getHeight()、setHeight(int)
-
setSample
public void setSample(int x, int y, int band, float s)指定された(x,y)位置の特定のバンドのサンプルを設定します。- パラメータ:
x- x位置y- y位置band- 設定するバンド(0、1、2または3)s- 設定するサンプル値
-
setSamples
public void setSamples(int x, int y, float s0)指定された(x,y)位置の最初のバンドのサンプルを設定します。- パラメータ:
x- x位置y- y位置s0- 最初のバンドに設定するサンプル値
-
setSamples
public void setSamples(int x, int y, float s0, float s1)指定された(x,y)位置の最初の2つのバンドのサンプルを設定します。- パラメータ:
x- x位置y- y位置s0- 最初のバンドに設定するサンプル値s1- 2番目のバンドに設定するサンプル値
-
setSamples
public void setSamples(int x, int y, float s0, float s1, float s2)指定された(x,y)位置の最初の3つのバンドのサンプルを設定します。- パラメータ:
x- x位置y- y位置s0- 最初のバンドに設定するサンプル値s1- 2番目のバンドに設定するサンプル値s2- 3番目のバンドに設定するサンプル値
-
setSamples
public void setSamples(int x, int y, float s0, float s1, float s2, float s3)指定された(x,y)位置の4つの各バンドのサンプルを設定します。- パラメータ:
x- x位置y- y位置s0- 最初のバンドに設定するサンプル値s1- 2番目のバンドに設定するサンプル値s2- 3番目のバンドに設定するサンプル値s3- 4番目のバンドに設定するサンプル値
-
-