Home
last modified time | relevance | path

Searched refs:lcViewSphere (Results 1 – 6 of 6) sorted by relevance

/dports/cad/leocad/leocad-21.06/common/
H A Dlc_viewsphere.cpp11 lcTexture* lcViewSphere::mTexture;
12 lcVertexBuffer lcViewSphere::mVertexBuffer;
13 lcIndexBuffer lcViewSphere::mIndexBuffer;
14 const float lcViewSphere::mRadius = 1.0f;
16 const int lcViewSphere::mSubdivisions = 7;
18 lcViewSphere::lcViewSphere(lcView* View) in lcViewSphere() function in lcViewSphere
24 void lcViewSphere::UpdateSettings() in UpdateSettings()
178 void lcViewSphere::Draw() in Draw()
246 bool lcViewSphere::OnLeftButtonDown() in OnLeftButtonDown()
263 bool lcViewSphere::OnLeftButtonUp() in OnLeftButtonUp()
[all …]
H A Dlc_viewsphere.h15 class lcViewSphere
18 lcViewSphere(lcView* View);
H A Dlc_global.h100 class lcViewSphere; variable
H A Dlc_view.h327 std::unique_ptr<lcViewSphere> mViewSphere;
H A Dlc_context.cpp97 lcViewSphere::CreateResources(Context); in InitializeRenderer()
124 lcViewSphere::DestroyResources(Context); in ShutdownRenderer()
H A Dlc_view.cpp32 mViewSphere = std::unique_ptr<lcViewSphere>(new lcViewSphere(this)); in lcView()