OCC22377 Patch for visualization component
[occt.git] / src / OpenGl / OpenGl_togl_graduatedtrihedron.cxx
1 #include <OpenGl_graduatedtrihedron.hxx>
2
3 #include <OpenGl_tsm_ws.hxx>
4 #include <OpenGl_telem_view.hxx>
5
6 #include <InterfaceGraphic_Graphic3d.hxx>
7 #include <InterfaceGraphic_Aspect.hxx>
8 #include <InterfaceGraphic_Visual3d.hxx>
9
10 void EXPORT call_togl_graduatedtrihedron_get(CALL_DEF_VIEW* view, 
11                                              CALL_DEF_GRADUATEDTRIHEDRON* cubic)
12 {
13     call_graduatedtrihedron_get(view->WsId, cubic);
14 }
15
16 void EXPORT call_togl_graduatedtrihedron_display(CALL_DEF_VIEW* view, 
17                                                  CALL_DEF_GRADUATEDTRIHEDRON* cubic)
18 {
19     call_graduatedtrihedron_display(view->WsId, cubic);
20 }
21
22 void EXPORT call_togl_graduatedtrihedron_erase(CALL_DEF_VIEW* view)
23 {
24     call_graduatedtrihedron_erase(view->WsId);
25 }
26
27 void EXPORT call_togl_graduatedtrihedron_minmaxvalues(float xmin, float ymin, float zmin,
28                                                       float xmax, float ymax, float zmax)
29 {
30     call_graduatedtrihedron_minmaxvalues(xmin, ymin, zmin, xmax, ymax, zmax);
31 }