Pakket | flash.display3D |
Klasse | public final class Context3DWrapMode |
Overerving | Context3DWrapMode Object |
Taalversie: | ActionScript 3.0 |
Runtimeversies: | Flash Player 11.6, AIR 3.6 |
Verwante API-elementen
Openbare eigenschappen
Openbare methoden
Openbare constanten
Constante | Gedefinieerd door | ||
---|---|---|---|
CLAMP : String = "clamp" [statisch]
De coördinaten van de klemtextuur buiten het bereik 0..1. | Context3DWrapMode | ||
CLAMP_U_REPEAT_V : String = "clamp_u_repeat_v" [statisch]
Vastzetten in de U-as, maar herhalen in de V-as. | Context3DWrapMode | ||
REPEAT : String = "repeat" [statisch]
Herhaal de (tegel-)structuurcoördinaten buiten het bereik 0..1. | Context3DWrapMode | ||
REPEAT_U_CLAMP_V : String = "repeat_u_clamp_v" [statisch]
Herhalen in de U-as, maar vastzetten in de V-as. | Context3DWrapMode |
Constantedetails
CLAMP | Constante |
public static const CLAMP:String = "clamp"
Taalversie: | ActionScript 3.0 |
Runtimeversies: | Flash Player 11.6, AIR 3.6 |
De coördinaten van de klemtextuur buiten het bereik 0..1.
De functie is x = max(min(x,0),1)
CLAMP_U_REPEAT_V | Constante |
public static const CLAMP_U_REPEAT_V:String = "clamp_u_repeat_v"
Vastzetten in de U-as, maar herhalen in de V-as.
REPEAT | Constante |
public static const REPEAT:String = "repeat"
Taalversie: | ActionScript 3.0 |
Runtimeversies: | Flash Player 11.6, AIR 3.6 |
Herhaal de (tegel-)structuurcoördinaten buiten het bereik 0..1.
De functie is x = x<0?1.0-frac(abs(x)):frac(x)
REPEAT_U_CLAMP_V | Constante |
public static const REPEAT_U_CLAMP_V:String = "repeat_u_clamp_v"
Herhalen in de U-as, maar vastzetten in de V-as.
Wed Jun 13 2018, 11:42 AM Z