A new experimentatl STL importer, written in C++. Roughly 7-9x faster than the Python based one. Reviewed By: Aras Pranckevicius, Hans Goudey. Differential Revision: https://developer.blender.org/D14941
13 lines
224 B
C++
13 lines
224 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup editor/io
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct wmOperatorType;
|
|
|
|
void WM_OT_stl_export(struct wmOperatorType *ot);
|
|
void WM_OT_stl_import(struct wmOperatorType *ot);
|