mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
35 lines
947 B
C++
Executable File
35 lines
947 B
C++
Executable File
// Tesselate_Presentation.h: interface for the Tesselate_Presentation class.
|
|
// Presentation class: Tesselate shapes.
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_Tesselate_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
|
|
#define AFX_Tesselate_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
#include <OCCDemo_Presentation.h>
|
|
|
|
class Tesselate_Presentation : public OCCDemo_Presentation
|
|
{
|
|
public:
|
|
// Construction
|
|
Tesselate_Presentation();
|
|
|
|
public:
|
|
// Iteration on samples
|
|
virtual void DoSample();
|
|
// one phase of iterations
|
|
|
|
private:
|
|
// Sample functions
|
|
void sample(const Standard_CString aFileName);
|
|
void tesselateShape(const TopoDS_Shape& aShape);
|
|
|
|
static Standard_CString myFileNames[];
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_Tesselate_PRESENTATION_H__790EED7F_7BA2_11D5_BA4A_0060B0EE18EA__INCLUDED_)
|