17 lines
388 B
C++
17 lines
388 B
C++
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bmesh
|
|
*/
|
|
|
|
/**
|
|
* \param use_verts: Use flagged verts instead of edges.
|
|
* \param tag_only: Only split tagged edges.
|
|
* \param copy_select: Copy selection history.
|
|
*/
|
|
void BM_mesh_edgesplit(BMesh *bm, bool use_verts, bool tag_only, bool copy_select);
|