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