mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-02 01:36:43 +08:00
15 lines
351 B
C++
Executable File
15 lines
351 B
C++
Executable File
// 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);
|
|
}
|