套件 | 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, 03:47 PM Z