0022650: Exception in Primitive Array during Redisplay of Presentable Object
[occt.git] / src / OpenGl / OpenGl_togl_graduatedtrihedron.cxx
CommitLineData
13a22457
S
1// File: OpenGl_togl_graduatedtrihedron.cxx
2// Created: 6 March 2011
3// Author: Sergey ZERCHANINOV
4// Copyright: OPEN CASCADE SA 2011
5
7fd59977 6#include <OpenGl_graduatedtrihedron.hxx>
7
8#include <OpenGl_tsm_ws.hxx>
9#include <OpenGl_telem_view.hxx>
10
11#include <InterfaceGraphic_Graphic3d.hxx>
12#include <InterfaceGraphic_Aspect.hxx>
13#include <InterfaceGraphic_Visual3d.hxx>
14
7fd59977 15void EXPORT call_togl_graduatedtrihedron_display(CALL_DEF_VIEW* view,
13a22457 16 const Graphic3d_CGraduatedTrihedron &cubic)
7fd59977 17{
18 call_graduatedtrihedron_display(view->WsId, cubic);
19}
20
21void EXPORT call_togl_graduatedtrihedron_erase(CALL_DEF_VIEW* view)
22{
23 call_graduatedtrihedron_erase(view->WsId);
24}
25
26void EXPORT call_togl_graduatedtrihedron_minmaxvalues(float xmin, float ymin, float zmin,
27 float xmax, float ymax, float zmax)
28{
29 call_graduatedtrihedron_minmaxvalues(xmin, ymin, zmin, xmax, ymax, zmax);
30}