summaryrefslogtreecommitdiff
path: root/src/VrmlAPI/VrmlAPI.cxx
blob: 9fdeffbd60a57f4ded584d7724e615d9e5b674b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// File:	VrmlAPI.cxx
// Created:	Tue May 30 15:52:16 2000
// Author:	Sergey MOZOKHIN
//		<smh@russox.nnov.matra-dtv.fr>


#include <VrmlAPI.ixx>
#include <VrmlAPI_Writer.hxx>
#include <TopoDS_Shape.hxx>

void VrmlAPI::Write(const TopoDS_Shape& aShape, const Standard_CString aFileName)  {
  VrmlAPI_Writer writer;
  writer.Write(aShape, aFileName);
}