Blender  V3.3
IO_stl.cc
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 
7 #include "BLI_timeit.hh"
8 
9 #include "IO_stl.h"
10 #include "stl_import.hh"
11 
12 void STL_import(bContext *C, const struct STLImportParams *import_params)
13 {
14  SCOPED_TIMER("STL Import");
15  blender::io::stl::importer_main(C, *import_params);
16 }
#define SCOPED_TIMER(name)
Definition: BLI_timeit.hh:68
void STL_import(bContext *C, const struct STLImportParams *import_params)
Definition: IO_stl.cc:12
#define C
Definition: RandGen.cpp:25
void importer_main(bContext *C, const STLImportParams &import_params)
Definition: stl_import.cc:43