Blender V5.0
BKE_mesh_topology_state.hh
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2024 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
8
9#pragma once
10
11#include "BLI_array_state.hh"
13
14struct Mesh;
15
16namespace blender::bke {
17
25 private:
26 ArrayState<int2> edge_verts_;
27 ArrayState<int> corner_verts_;
28 ArrayState<int> corner_edges_;
29 ArrayState<int> face_offset_indices_;
30
31 public:
33
38 bool same_topology_as(const Mesh &mesh) const;
39};
40
41} // namespace blender::bke
bool same_topology_as(const Mesh &mesh) const