JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxSRenderView.h
Go to the documentation of this file.
1#pragma once
2
23#include "DxBaseClass.h"
24#include "ProgressBarDLG.h"
25
26
27//
28namespace jbxwl {
29
30
31typedef struct _SVERTEXV
32{
33 float x, y, z; // D3DXVECTOR3 頂点座標
34 float nx, ny, nz; // D3DXVECTOR3 法線ベクトル
35 float ps; // ピクセルサイズ
36 D3DCOLOR color; // DWORD ディフューズ色
37// float tu, tv; // D3DXVECTOR2 テクスチャ座標
38} SVERTEXV;
39
40
41
42//#define FVF_SVERTEX (D3DFVF_XYZ | D3DFVF_DIFFUSE | D3DFVF_TEX1)
43//#define FVF_SVERTEX (D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_DIFFUSE | D3DFVF_TEX1)
44#define FVF_SVERTEXV (D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_PSIZE | D3DFVF_DIFFUSE)
45//#define FVF_SVERTEXV (D3DFVF_XYZ | D3DFVF_NORMAL | D3DFVF_DIFFUSE)
46
47
49// CDxSRenderView ビュー
50
52{
53protected:
54 CDxSRenderView(); // 動的生成に使用されるプロテクト コンストラクタ
56
57// アトリビュート
58public:
61
62 int xsize;
63 int ysize;
64 int zsize;
65 int msize;
66
67 int datano;
68
70
71// オペレーション
72public:
73// CDxGRDoc* GetDocument() { return (CDxGRDoc*)m_pDocument;}
74
75 virtual void SetState();
76 virtual BOOL PrepareVB();
77
78 virtual void ExecRender();
79 virtual void ClearObject();
80 virtual void InitObject();
81
82 virtual void ExRotationAngle();
83 virtual void ExMouseWheel();
84
85 int GetValidVoxelNum();
86
87 // オーバーライド
88
89 //{{AFX_VIRTUAL(CDxSRenderView)
90public:
91 virtual void OnInitialUpdate();
92protected:
93 virtual void OnDraw(CDC* pDC) {}
94 //}}AFX_VIRTUAL
95
96// インプリメンテーション
97protected:
98 virtual ~CDxSRenderView();
99#ifdef _DEBUG
100 virtual void AssertValid() const;
101 virtual void Dump(CDumpContext& dc) const;
102#endif
103
104
105protected:
106 //{{AFX_MSG(CDxSRenderView)
107 //}}AFX_MSG
109};
110
111
113
114//{{AFX_INSERT_LOCATION}}
115
116
117} // namespace
再帰定義可能なプログレスバーカウンタ
virtual void InitObject()
virtual void OnInitialUpdate()
CProgressBarDLG * pCounter
virtual void ExecRender()
virtual void ExRotationAngle()
virtual void ClearObject()
virtual void OnDraw(CDC *pDC)
virtual void AssertValid() const
virtual void ExMouseWheel()
virtual void Dump(CDumpContext &dc) const
D3DCOLOR color