Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IO_stl.cc « stl « io « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b26c153369285d32f94ef86a3b76b5d77388fa9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* 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);
}