blob: 50be46a82e6ae17153e9cf893d39aa9a207988ad (
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
|
-- File: MeshTest.cdl
-- Created: Wed Aug 3 16:41:21 1994
-- Author: Modeling
-- <modeling@bravox>
---Copyright: Matra Datavision 1994
package MeshTest
---Purpose: Provides methods for testing the mesh algorithms.
uses
TColStd,
Draw,
TopoDS,
BRepMesh
is
class DrawableMesh;
---Purpose: Provides a mesh object inherited from Drawable3d
-- to draw a triangulation.
Commands(DI : in out Interpretor from Draw);
---Purpose: Defines meshing commands
PluginCommands(DI : in out Interpretor from Draw);
---Purpose: Defines plugin commands
end MeshTest;
|