summaryrefslogtreecommitdiff
path: root/src/BRepMesh/BRepMesh.cxx
blob: 7754fd89827012b80bced6461a47fbb9f03eb2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// File:	BRepMesh.cxx
// Created:	Wed Aug  7 10:19:24 1996
// Author:	Laurent PAINNOT
//		<lpa@penox.paris1.matra-dtv.fr>


#include <BRepMesh.ixx>
#include <BRepMesh_IncrementalMesh.hxx>
#include <TopoDS_Shape.hxx>


void BRepMesh::Mesh(const TopoDS_Shape& S,
		    const Standard_Real d)
{
  BRepMesh_IncrementalMesh M(S, d);

}