com.jme3.post.filters
クラス RadialBlurFilter

java.lang.Object
  上位を拡張 com.jme3.post.Filter
      上位を拡張 com.jme3.post.filters.RadialBlurFilter
すべての実装されたインタフェース:
Savable

public class RadialBlurFilter
extends Filter

Radially blurs the scene from the center of it


入れ子のクラスの概要
 
クラス com.jme3.post.Filter から継承された入れ子のクラス/インタフェース
Filter.Pass
 
コンストラクタの概要
RadialBlurFilter()
          Creates a RadialBlurFilter
RadialBlurFilter(float sampleDist, float sampleStrength)
          Creates a RadialBlurFilter
 
メソッドの概要
 float getSampleDist()
          推奨されていません。 use getSampleDistance()
 float getSampleDistance()
          return the sample distance
 float getSampleStrength()
          Returns the sample Strength
 void read(JmeImporter im)
          Override this method if you want to load extra properties when the filter is loaded else only basic properties of the filter will be loaded This method should always begin by super.read(im);
 void setSampleDist(float sampleDist)
          推奨されていません。 use setSampleDistance(float sampleDist)
 void setSampleDistance(float sampleDist)
          sets the samples distances default is 1
 void setSampleStrength(float sampleStrength)
          sets the sample streanght default is 2.2
 void write(JmeExporter ex)
          Override this method if you want to save extra properties when the filter is saved else only basic properties of the filter will be saved This method should always begin by super.write(ex);
 
クラス com.jme3.post.Filter から継承されたメソッド
getName, isEnabled, setEnabled, setName
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

RadialBlurFilter

public RadialBlurFilter()
Creates a RadialBlurFilter


RadialBlurFilter

public RadialBlurFilter(float sampleDist,
                        float sampleStrength)
Creates a RadialBlurFilter

パラメータ:
sampleDist - the distance between samples
sampleStrength - the strenght of each sample
メソッドの詳細

getSampleDistance

public float getSampleDistance()
return the sample distance

戻り値:

setSampleDistance

public void setSampleDistance(float sampleDist)
sets the samples distances default is 1

パラメータ:
sampleDist -

getSampleDist

@Deprecated
public float getSampleDist()
推奨されていません。 use getSampleDistance()

戻り値:

setSampleDist

@Deprecated
public void setSampleDist(float sampleDist)
推奨されていません。 use setSampleDistance(float sampleDist)

パラメータ:
sampleDist -

getSampleStrength

public float getSampleStrength()
Returns the sample Strength

戻り値:

setSampleStrength

public void setSampleStrength(float sampleStrength)
sets the sample streanght default is 2.2

パラメータ:
sampleStrength -

write

public void write(JmeExporter ex)
           throws java.io.IOException
クラス Filter の記述:
Override this method if you want to save extra properties when the filter is saved else only basic properties of the filter will be saved This method should always begin by super.write(ex);

定義:
インタフェース Savable 内の write
オーバーライド:
クラス Filter 内の write
例外:
java.io.IOException

read

public void read(JmeImporter im)
          throws java.io.IOException
クラス Filter の記述:
Override this method if you want to load extra properties when the filter is loaded else only basic properties of the filter will be loaded This method should always begin by super.read(im);

定義:
インタフェース Savable 内の read
オーバーライド:
クラス Filter 内の read
例外:
java.io.IOException