Lines Matching refs:m_pView

93 	m_pView		= new CPoints_View_Control	(this, pPoints, m_Settings);  in BEGIN_EVENT_TABLE()
110 m_pField_Z = Add_Choice (_TL("Z Attribute") , Attributes, m_pView->m_zField); in BEGIN_EVENT_TABLE()
111 m_pField_Color = Add_Choice (_TL("Color Attribute") , Attributes, m_pView->m_cField); in BEGIN_EVENT_TABLE()
114 m_pCheck_Central = Add_CheckBox (_TL("Central Projection") , m_pView->m_bCentral); in BEGIN_EVENT_TABLE()
115 m_pCheck_Stereo = Add_CheckBox (_TL("Anaglyph") , m_pView->m_bStereo); in BEGIN_EVENT_TABLE()
116 m_pCheck_Scale = Add_CheckBox (_TL("Scale Point Size") , m_pView->m_bScale); in BEGIN_EVENT_TABLE()
119 …m_pSlide_xRotate = Add_Slider (_TL("X-Rotation") , m_pView->m_xRotate * M_RAD_TO_DEG, -180.0, 18… in BEGIN_EVENT_TABLE()
120 …m_pSlide_yRotate = Add_Slider (_TL("Y-Rotation") , m_pView->m_yRotate * M_RAD_TO_DEG, -180.0, 18… in BEGIN_EVENT_TABLE()
121 …m_pSlide_zRotate = Add_Slider (_TL("Z-Rotation") , m_pView->m_zRotate * M_RAD_TO_DEG, -180.0, 18… in BEGIN_EVENT_TABLE()
123 m_pSlide_Central = Add_Slider (_TL("Eye Distance") , m_pView->m_dCentral, 1.0, 2000.0); in BEGIN_EVENT_TABLE()
125 m_pSlide_Detail = Add_Slider (_TL("Level of Detail") , m_pView->m_Detail, 0.0, 1.0); in BEGIN_EVENT_TABLE()
133 Add_Output(m_pView); in BEGIN_EVENT_TABLE()
139 m_pView->On_Mouse_Wheel(event); in On_Mouse_Wheel()
147 m_pView->m_bCentral = m_pCheck_Central ->GetValue() == 1 ? 1 : 0; in On_Update_Control()
151 m_pView->m_bStereo = m_pCheck_Stereo ->GetValue() == 1 ? 1 : 0; in On_Update_Control()
155 m_pView->m_bScale = m_pCheck_Scale ->GetValue() == 1 ? 1 : 0; in On_Update_Control()
159 m_pView->m_xRotate = m_pSlide_xRotate ->Get_Value() * M_DEG_TO_RAD; in On_Update_Control()
163 m_pView->m_yRotate = m_pSlide_yRotate ->Get_Value() * M_DEG_TO_RAD; in On_Update_Control()
167 m_pView->m_zRotate = m_pSlide_zRotate ->Get_Value() * M_DEG_TO_RAD; in On_Update_Control()
171 m_pView->m_dCentral = m_pSlide_Central ->Get_Value(); in On_Update_Control()
175 m_pView->m_Detail = m_pSlide_Detail ->Get_Value(); in On_Update_Control()
182 m_pView->Update_View(); in On_Update_Control()
190 m_pView ->m_zField = m_pField_Z ->GetSelection(); in On_Update_Choices()
192 m_pView ->Update_View(); in On_Update_Choices()
200 m_pView ->m_cField = m_pField_Color->GetSelection(); in On_Update_Choices()
203 m_pView ->Update_Extent(m_pExtent->Get_Extent()); in On_Update_Choices()
219 m_pView ->Update_View(); in On_Button()
231 m_pView->Update_Extent(m_pExtent->Get_Extent()); in Update_Extent()
239 …d = fmod(M_RAD_TO_DEG * m_pView->m_xRotate, 360.0); if( d < -180.0 ) d += 360.0; else if( d > 180.… in Update_Rotation()
242 …d = fmod(M_RAD_TO_DEG * m_pView->m_yRotate, 360.0); if( d < -180.0 ) d += 360.0; else if( d > 180.… in Update_Rotation()
245 …d = fmod(M_RAD_TO_DEG * m_pView->m_zRotate, 360.0); if( d < -180.0 ) d += 360.0; else if( d > 180.… in Update_Rotation()
248 m_pCheck_Scale ->SetValue(m_pView->m_bScale); in Update_Rotation()
249 m_pCheck_Stereo ->SetValue(m_pView->m_bStereo); in Update_Rotation()