This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/io/stl/IO_stl.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
314 B
C++
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup stl
*/
#include "BLI_timeit.hh"
#include "IO_stl.h"
#include "stl_import.hh"
void STL_import(bContext *C, const struct STLImportParams *import_params)
{
SCOPED_TIMER("STL Import");
blender::io::stl::importer_main(C, *import_params);
}