ホーム › Graphics.Direct3D9 › D3DCULL
D3DCULL
列挙型メンバー 3
| 名前 | 10進 | 16進 |
|---|---|---|
| D3DCULL_NONE | 1 | 0x1 |
| D3DCULL_CW | 2 | 0x2 |
| D3DCULL_CCW | 3 | 0x3 |
各言語での定義
列挙メンバーの定義。HSP タブは #define global(値は16進)。
typedef enum D3DCULL : int {
D3DCULL_NONE = 1,
D3DCULL_CW = 2,
D3DCULL_CCW = 3
} D3DCULL;public enum D3DCULL : int
{
D3DCULL_NONE = 1,
D3DCULL_CW = 2,
D3DCULL_CCW = 3,
}Public Enum D3DCULL As Integer
D3DCULL_NONE = 1
D3DCULL_CW = 2
D3DCULL_CCW = 3
End Enumimport enum
class D3DCULL(enum.IntEnum):
D3DCULL_NONE = 1
D3DCULL_CW = 2
D3DCULL_CCW = 3// D3DCULL
pub const D3DCULL_NONE: i32 = 1;
pub const D3DCULL_CW: i32 = 2;
pub const D3DCULL_CCW: i32 = 3;// D3DCULL
const (
D3DCULL_NONE int32 = 1
D3DCULL_CW int32 = 2
D3DCULL_CCW int32 = 3
)const
D3DCULL_NONE = 1;
D3DCULL_CW = 2;
D3DCULL_CCW = 3;// D3DCULL
pub const D3DCULL_NONE: i32 = 1;
pub const D3DCULL_CW: i32 = 2;
pub const D3DCULL_CCW: i32 = 3;const
D3DCULL_NONE* = 1
D3DCULL_CW* = 2
D3DCULL_CCW* = 3enum D3DCULL : int {
D3DCULL_NONE = 1,
D3DCULL_CW = 2,
D3DCULL_CCW = 3,
}#define global D3DCULL_NONE 0x1
#define global D3DCULL_CW 0x2
#define global D3DCULL_CCW 0x3