0022627: Change OCCT memory management defaults
[occt.git] / src / XSDRAWSTLVRML / XSDRAWSTLVRML_DrawableMesh.cxx
CommitLineData
7fd59977 1// File: XSDRAWSTLVRML_DrawableMesh.cxx
2// Created: Thu June 11 2004
3// Author: Alexander SOLOVYOV
4// Copyright: Open CASCADE 2004
5
6#include <XSDRAWSTLVRML_DrawableMesh.ixx>
7
8//================================================================
9// Function : DrawOn
10// Purpose :
11//================================================================
12XSDRAWSTLVRML_DrawableMesh::XSDRAWSTLVRML_DrawableMesh( const Handle( MeshVS_Mesh )& aMesh )
13{
14 myMesh = aMesh;
15}
16
17//================================================================
18// Function :
19// Purpose :
20//================================================================
21void XSDRAWSTLVRML_DrawableMesh::DrawOn(Draw_Display& d) const
22{
23}
24
25//================================================================
26// Function :
27// Purpose :
28//================================================================
29Handle( MeshVS_Mesh ) XSDRAWSTLVRML_DrawableMesh::GetMesh() const
30{
31 return myMesh;
32}