|
Blender V5.0
|
#include <sculpt_flood_fill.hh>
Public Member Functions | |
| FillDataBMesh (int size) | |
| FillDataBMesh (int size, Span< int > fake_neighbors) | |
| void | add_initial (BMVert *vertex) |
| void | add_initial (BMesh &bm, Span< int > verts) |
| void | add_and_skip_initial (BMVert *vertex, int index) |
| void | execute (Object &object, FunctionRef< bool(BMVert *from_v, BMVert *to_v)> func) |
Public Attributes | |
| std::queue< BMVert * > | queue |
| BitVector | visited_verts |
| Span< int > | fake_neighbors |
Definition at line 67 of file sculpt_flood_fill.hh.
|
inline |
Definition at line 72 of file sculpt_flood_fill.hh.
References size(), and visited_verts.
|
inline |
Definition at line 73 of file sculpt_flood_fill.hh.
References BLI_assert, fake_neighbors, size(), and visited_verts.
| void blender::ed::sculpt_paint::flood_fill::FillDataBMesh::add_and_skip_initial | ( | BMVert * | vertex, |
| int | index ) |
Definition at line 74 of file sculpt_flood_fill.cc.
References queue, and visited_verts.
Referenced by blender::ed::sculpt_paint::expand::calc_topology_falloff_from_verts().
| void blender::ed::sculpt_paint::flood_fill::FillDataBMesh::add_initial | ( | BMesh & | bm, |
| Span< int > | verts ) |
Definition at line 55 of file sculpt_flood_fill.cc.
References add_initial(), bm, BM_vert_at_index(), and verts.
| void blender::ed::sculpt_paint::flood_fill::FillDataBMesh::add_initial | ( | BMVert * | vertex | ) |
Definition at line 50 of file sculpt_flood_fill.cc.
References queue.
Referenced by add_initial(), blender::ed::sculpt_paint::pose::calc_pose_origin_and_factor_bmesh(), blender::ed::sculpt_paint::auto_mask::fill_topology_automasking_factors_bmesh(), blender::ed::sculpt_paint::pose::ik_chain_init_face_sets_fk_bmesh(), and blender::ed::sculpt_paint::expand::normals_falloff_create().
| void blender::ed::sculpt_paint::flood_fill::FillDataBMesh::execute | ( | Object & | object, |
| FunctionRef< bool(BMVert *from_v, BMVert *to_v)> | func ) |
Definition at line 165 of file sculpt_flood_fill.cc.
References blender::Vector< T, InlineBufferCapacity, Allocator >::append(), bm, BM_elem_flag_test, BM_ELEM_HIDDEN, BM_elem_index_get, BM_vert_at_index(), FAKE_NEIGHBOR_NONE, fake_neighbors, queue, blender::ed::sculpt_paint::vert_neighbors_get_bmesh(), and visited_verts.
Referenced by blender::ed::sculpt_paint::pose::calc_pose_origin_and_factor_bmesh(), blender::ed::sculpt_paint::expand::calc_topology_falloff_from_verts(), blender::ed::sculpt_paint::auto_mask::fill_topology_automasking_factors_bmesh(), blender::ed::sculpt_paint::pose::ik_chain_init_face_sets_fk_bmesh(), and blender::ed::sculpt_paint::expand::normals_falloff_create().
| Span<int> blender::ed::sculpt_paint::flood_fill::FillDataBMesh::fake_neighbors |
Definition at line 70 of file sculpt_flood_fill.hh.
Referenced by execute(), and FillDataBMesh().
| std::queue<BMVert *> blender::ed::sculpt_paint::flood_fill::FillDataBMesh::queue |
Definition at line 68 of file sculpt_flood_fill.hh.
Referenced by add_and_skip_initial(), add_initial(), and execute().
| BitVector blender::ed::sculpt_paint::flood_fill::FillDataBMesh::visited_verts |
Definition at line 69 of file sculpt_flood_fill.hh.
Referenced by add_and_skip_initial(), execute(), FillDataBMesh(), and FillDataBMesh().