パッケージ | flash.display3D |
クラス | public final class Context3DWrapMode |
継承 | Context3DWrapMode Object |
言語バージョン: | ActionScript 3.0 |
ランタイムバージョン: | Flash Player 11.6, AIR 3.6 |
関連する API エレメント
パブリックプロパティ
パブリックメソッド
パブリック定数
定数 | 定義元 | ||
---|---|---|---|
CLAMP : String = "clamp" [静的]
テクスチャの座標を 0..1 の範囲外でクランプします。 | Context3DWrapMode | ||
CLAMP_U_REPEAT_V : String = "clamp_u_repeat_v" [静的]
U 軸でクランプしますが、V 軸で繰り返します。 | Context3DWrapMode | ||
REPEAT : String = "repeat" [静的]
テクスチャの座標を 0..1 の範囲外で繰り返します(タイル化します)。 | Context3DWrapMode | ||
REPEAT_U_CLAMP_V : String = "repeat_u_clamp_v" [静的]
U 軸で繰り返しますが、V 軸でクランプします。 | Context3DWrapMode |
定数の詳細
CLAMP | 定数 |
public static const CLAMP:String = "clamp"
言語バージョン: | ActionScript 3.0 |
ランタイムバージョン: | Flash Player 11.6, AIR 3.6 |
テクスチャの座標を 0..1 の範囲外でクランプします。
関数は、x = max(min(x,0),1) です。
CLAMP_U_REPEAT_V | 定数 |
public static const CLAMP_U_REPEAT_V:String = "clamp_u_repeat_v"
U 軸でクランプしますが、V 軸で繰り返します。
REPEAT | 定数 |
public static const REPEAT:String = "repeat"
言語バージョン: | ActionScript 3.0 |
ランタイムバージョン: | Flash Player 11.6, AIR 3.6 |
テクスチャの座標を 0..1 の範囲外で繰り返します(タイル化します)。
関数は、x = x<0?1.0-frac(abs(x)):frac(x) です。
REPEAT_U_CLAMP_V | 定数 |
public static const REPEAT_U_CLAMP_V:String = "repeat_u_clamp_v"
U 軸で繰り返しますが、V 軸でクランプします。
Tue Jun 12 2018, 10:34 AM Z