18 lines
338 B
C++
18 lines
338 B
C++
/* SPDX-FileCopyrightText: 2012 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
#pragma once
|
|
|
|
/** \file
|
|
* \ingroup bmesh
|
|
*/
|
|
|
|
/**
|
|
* Check of this #BMesh is valid,
|
|
* this function can be slow since its intended to help with debugging.
|
|
*
|
|
* \return true when the mesh is valid.
|
|
*/
|
|
bool BM_mesh_validate(BMesh *bm);
|