2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2022-01-03 14:49:31 -05:00
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup obj
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "BLI_timeit.hh"
|
|
|
|
|
|
|
|
|
|
#include "IO_wavefront_obj.h"
|
|
|
|
|
|
|
|
|
|
#include "obj_exporter.hh"
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* C-interface for the exporter.
|
|
|
|
|
*/
|
|
|
|
|
void OBJ_export(bContext *C, const OBJExportParams *export_params)
|
|
|
|
|
{
|
|
|
|
|
SCOPED_TIMER("OBJ export");
|
|
|
|
|
blender::io::obj::exporter_main(C, *export_params);
|
|
|
|
|
}
|