Blender V5.0
blender::bke::GeometrySet Struct Reference

#include <BKE_geometry_set.hh>

Classes

struct  GatheredAttributes

Public Types

using AttributeForeachCallback

Public Member Functions

template<typename Component>
Component & get_component_for_write ()
template<typename Component>
const Component * get_component () const
template<typename Component>
bool has () const
template<typename Component>
bool has_component () const
template<typename Component>
void remove ()
uint64_t hash () const

Public Attributes

std::string name

Friends

std::ostream & operator<< (std::ostream &stream, const GeometrySet &geometry_set)
bool operator== (const GeometrySet &a, const GeometrySet &b)

Geometry Set

 GeometrySet ()
 GeometrySet (const GeometrySet &other)
 GeometrySet (GeometrySet &&other)
 ~GeometrySet ()
GeometrySetoperator= (const GeometrySet &other)
GeometrySetoperator= (GeometrySet &&other)
GeometryComponentget_component_for_write (GeometryComponent::Type component_type)
const GeometryComponentget_component (GeometryComponent::Type component_type) const
bool has (const GeometryComponent::Type component_type) const
void remove (const GeometryComponent::Type component_type)
void keep_only (Span< GeometryComponent::Type > component_types)
void add (const GeometryComponent &component)
Vector< const GeometryComponent * > get_components () const
std::optional< Bounds< float3 > > compute_boundbox_without_instances (bool use_radius=true, bool use_subdiv=false) const
void clear ()
bool owns_direct_data () const
void ensure_owns_direct_data ()
void ensure_owns_all_data ()
void ensure_no_shared_components ()
void attribute_foreach (Span< GeometryComponent::Type > component_types, bool include_instances, AttributeForeachCallback callback) const
void gather_attributes_for_propagation (Span< GeometryComponent::Type > component_types, GeometryComponent::Type dst_component_type, bool include_instances, const AttributeFilter &attribute_filter, GatheredAttributes &r_attributes) const
Vector< GeometryComponent::Typegather_component_types (bool include_instances, bool ignore_empty) const
bool has_mesh () const
bool has_pointcloud () const
bool has_instances () const
bool has_volume () const
bool has_curves () const
bool has_realized_data () const
bool has_grease_pencil () const
bool is_empty () const
const Meshget_mesh () const
const PointCloudget_pointcloud () const
const Volumeget_volume () const
const Curvesget_curves () const
const Instancesget_instances () const
const CurvesEditHintsget_curve_edit_hints () const
const GreasePencilEditHintsget_grease_pencil_edit_hints () const
const GizmoEditHintsget_gizmo_edit_hints () const
const GreasePencilget_grease_pencil () const
Meshget_mesh_for_write ()
PointCloudget_pointcloud_for_write ()
Volumeget_volume_for_write ()
Curvesget_curves_for_write ()
Instancesget_instances_for_write ()
CurvesEditHintsget_curve_edit_hints_for_write ()
GreasePencilEditHintsget_grease_pencil_edit_hints_for_write ()
GizmoEditHintsget_gizmo_edit_hints_for_write ()
GreasePencilget_grease_pencil_for_write ()
void replace_mesh (Mesh *mesh, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void replace_pointcloud (PointCloud *pointcloud, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void replace_volume (Volume *volume, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void replace_curves (Curves *curves, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void replace_instances (Instances *instances, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void replace_grease_pencil (GreasePencil *grease_pencil, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
void count_memory (MemoryCounter &memory) const
static GeometrySet from_mesh (Mesh *mesh, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
static GeometrySet from_volume (Volume *volume, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
static GeometrySet from_pointcloud (PointCloud *pointcloud, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
static GeometrySet from_curves (Curves *curves, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
static GeometrySet from_instances (Instances *instances, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)
static GeometrySet from_grease_pencil (GreasePencil *grease_pencil, GeometryOwnershipType ownership=GeometryOwnershipType::Owned)

Detailed Description

A geometry set is a container for multiple kinds of geometry. It does not own geometry directly itself, instead geometry is owned by multiple #GeometryComponents, and the geometry set increases the user count of each component, so they avoid losing the data. This means individual components might be shared between multiple geometries and other code. Shared components are copied automatically when write access is requested.

The components usually do not store data directly, but keep a reference to a data structure defined elsewhere. There is at most one component of each type:

Copying a geometry set is a relatively cheap operation, because it does not copy the referenced geometry components, so GeometrySet can often be passed or moved by value.

Definition at line 145 of file BKE_geometry_set.hh.

Member Typedef Documentation

◆ AttributeForeachCallback

Initial value:
FunctionRef<void(StringRef attribute_id,
const AttributeMetaData &meta_data,
const GeometryComponent &component)>

Definition at line 251 of file BKE_geometry_set.hh.

Constructor & Destructor Documentation

◆ GeometrySet() [1/3]

blender::bke::GeometrySet::GeometrySet ( )
default

The methods are defaulted here so that they are not instantiated in every translation unit.

Referenced by attribute_foreach(), from_curves(), from_grease_pencil(), from_instances(), from_mesh(), from_pointcloud(), from_volume(), GeometrySet(), GeometrySet(), operator<<, operator=(), operator=(), and operator==.

◆ GeometrySet() [2/3]

blender::bke::GeometrySet::GeometrySet ( const GeometrySet & other)
default

References GeometrySet().

◆ GeometrySet() [3/3]

blender::bke::GeometrySet::GeometrySet ( GeometrySet && other)
default

References GeometrySet().

◆ ~GeometrySet()

blender::bke::GeometrySet::~GeometrySet ( )
default

Member Function Documentation

◆ add()

◆ attribute_foreach()

◆ clear()

◆ compute_boundbox_without_instances()

std::optional< Bounds< float3 > > blender::bke::GeometrySet::compute_boundbox_without_instances ( bool use_radius = true,
bool use_subdiv = false ) const

◆ count_memory()

◆ ensure_no_shared_components()

void blender::bke::GeometrySet::ensure_no_shared_components ( )

Typically, multiple GeometrySet may share the same GeometryComponent. This is fine as long as we can guarantee that the data is read-only. However, if some geometry is available in Python, that guarantee is not possible currently. For that case it can make sense that the GeometrySet is the unique owner of the geometries it contains.

Definition at line 309 of file geometry_set.cc.

References get_component_for_write(), and i.

◆ ensure_owns_all_data()

void blender::bke::GeometrySet::ensure_owns_all_data ( )

Same as ensure_owns_direct_data but also turns object/collection instances into geometry instances so that they can be owned.

Definition at line 289 of file geometry_set.cc.

References ensure_owns_direct_data(), and get_instances_for_write().

Referenced by blender::bke::bake::GeometryBakeItem::prepare_geometry_for_bake().

◆ ensure_owns_direct_data()

void blender::bke::GeometrySet::ensure_owns_direct_data ( )

Make sure that the geometry can be cached. This does not ensure ownership of object/collection instances. This is necessary because sometimes components only have read-only or editing access to their data, which might be freed later if this geometry set outlasts the data.

Definition at line 275 of file geometry_set.cc.

References blender::bke::GeometryComponent::ensure_owns_direct_data(), and get_component_for_write().

Referenced by ensure_owns_all_data(), blender::bke::modifier_modify_mesh_and_geometry_set(), blender::nodes::node_geo_instance_on_points_cc::node_geo_exec(), and blender::nodes::node_geo_proximity_cc::node_geo_exec().

◆ from_curves()

◆ from_grease_pencil()

GeometrySet blender::bke::GeometrySet::from_grease_pencil ( GreasePencil * grease_pencil,
GeometryOwnershipType ownership = GeometryOwnershipType::Owned )
static

Create a new geometry set that only contains the given Grease Pencil data.

Definition at line 465 of file geometry_set.cc.

References GeometrySet(), and replace_grease_pencil().

Referenced by blender::ed::spreadsheet::geometry_display_data_get(), and blender::ed::geometry::get_original_geometry_eval_copy().

◆ from_instances()

◆ from_mesh()

◆ from_pointcloud()

◆ from_volume()

GeometrySet blender::bke::GeometrySet::from_volume ( Volume * volume,
GeometryOwnershipType ownership = GeometryOwnershipType::Owned )
static

Create a new geometry set that only contains the given volume.

Definition at line 437 of file geometry_set.cc.

References GeometrySet(), and replace_volume().

Referenced by blender::nodes::geo_eval_log::ViewerNodeLog::main_geometry().

◆ gather_attributes_for_propagation()

◆ gather_component_types()

Vector< GeometryComponent::Type > blender::bke::GeometrySet::gather_component_types ( bool include_instances,
bool ignore_empty ) const

◆ get_component() [1/2]

◆ get_component() [2/2]

◆ get_component_for_write() [1/2]

◆ get_component_for_write() [2/2]

GeometryComponent & blender::bke::GeometrySet::get_component_for_write ( GeometryComponent::Type component_type)

This method can only be used when the geometry set is mutable. It returns a mutable geometry component of the given type.

Definition at line 113 of file geometry_set.cc.

References blender::bke::GeometryComponent::create().

Referenced by blender::ed::sculpt_paint::trim::apply_join_operation(), blender::ed::object::create_applied_mesh_for_modifier(), blender::nodes::node_geo_curve_fill_cc::curve_fill_calculate(), blender::bke::editbmesh_build_data(), blender::geometry::execute_instances_tasks(), blender::geometry::execute_realize_edit_data_tasks(), blender::nodes::node_geo_curve_to_mesh_cc::grease_pencil_to_mesh(), blender::nodes::LazyFunctionForReduceForeachGeometryElement::handle_generation_items_group(), blender::geometry::join_component_type(), blender::ed::pointcloud::join_objects_exec(), blender::bke::mesh_build_data(), blender::ed::object::modifier_apply_obdata(), blender::bke::modifier_modify_mesh_and_geometry_set(), blender::modify_geometry_set(), blender::modify_mesh(), modify_mesh(), blender::nodes::node_geo_attribute_capture_cc::node_geo_exec(), blender::nodes::node_geo_instance_on_points_cc::node_geo_exec(), blender::nodes::node_geo_set_id_cc::node_geo_exec(), blender::nodes::node_geo_set_instance_transform_cc::node_geo_exec(), blender::nodes::node_geo_store_named_attribute_cc::node_geo_exec(), blender::geometry::propagate_instances_to_keep(), blender::io::usd::USDPointInstancerReader::read_object_data(), blender::io::usd::USDPointsReader::read_object_data(), blender::io::alembic::AbcPointsReader::readObjectData(), blender::geometry::realize_instances(), blender::nodes::node_geo_remove_attribute_cc::remove_attributes_recursive(), take_pointcloud_ownership_from_geometry_set(), and take_volume_ownership_from_geometry_set().

◆ get_components()

◆ get_curve_edit_hints()

const CurvesEditHints * blender::bke::GeometrySet::get_curve_edit_hints ( ) const

Returns read-only curve edit hints or null.

Definition at line 354 of file geometry_set.cc.

References blender::bke::GeometryComponentEditData::curves_edit_hints_, get_component(), and nullptr.

Referenced by blender::nodes::GeoNodeExecParams::check_output_geometry_set(), and operator<<.

◆ get_curve_edit_hints_for_write()

CurvesEditHints * blender::bke::GeometrySet::get_curve_edit_hints_for_write ( )

◆ get_curves()

const Curves * blender::bke::GeometrySet::get_curves ( ) const

Returns a read-only curves data-block or null.

Definition at line 342 of file geometry_set.cc.

References blender::bke::CurveComponent::get(), get_component(), and nullptr.

Referenced by BKE_displist_make_curveTypes(), blender::nodes::GeoNodeExecParams::check_input_geometry_set(), compute_boundbox_without_instances(), blender::ed::object::convert_grease_pencil_component_to_curves(), blender::ed::object::convert_grease_pencil_to_mesh(), blender::nodes::node_geo_curve_fill_cc::curve_fill_calculate(), blender::nodes::node_geo_curves_to_grease_pencil_cc::curve_instances_to_grease_pencil_layers(), blender::nodes::node_geo_curve_to_mesh_cc::curve_to_mesh(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_curves(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_points_curve(), blender::geometry::gather_curves_to_realize(), blender::nodes::node_geo_curve_trim_cc::geometry_set_curve_trim(), blender::ed::greasepencil::grease_pencil_copy_strokes_exec(), blender::ed::greasepencil::join_curves(), blender::geometry::join_curves(), blender::nodes::node_geo_curve_fillet_cc::node_geo_exec(), blender::nodes::node_geo_curve_length_cc::node_geo_exec(), blender::nodes::node_geo_curve_sample_cc::node_geo_exec(), blender::nodes::node_geo_curve_spline_type_cc::node_geo_exec(), blender::nodes::node_geo_curve_subdivide_cc::node_geo_exec(), blender::nodes::node_geo_curve_to_mesh_cc::node_geo_exec(), blender::nodes::node_geo_curves_to_grease_pencil_cc::node_geo_exec(), blender::nodes::node_geo_interpolate_curves_cc::node_geo_exec(), operator<<, blender::ed::greasepencil::paste_all_strokes_from_clipboard(), replace_curves(), blender::geometry::separate_geometry(), and blender::nodes::LazyFunctionForForeachGeometryElementZone::try_extract_element_geometries().

◆ get_curves_for_write()

◆ get_gizmo_edit_hints()

const GizmoEditHints * blender::bke::GeometrySet::get_gizmo_edit_hints ( ) const

Returns read-only gizmo edit hints or null.

Definition at line 366 of file geometry_set.cc.

References get_component(), blender::bke::GeometryComponentEditData::gizmo_edit_hints_, and nullptr.

◆ get_gizmo_edit_hints_for_write()

GizmoEditHints * blender::bke::GeometrySet::get_gizmo_edit_hints_for_write ( )

Returns mutable gizmo edit hints or null.

Definition at line 608 of file geometry_set.cc.

References get_component_for_write(), blender::bke::GeometryComponentEditData::gizmo_edit_hints_, and has().

◆ get_grease_pencil()

◆ get_grease_pencil_edit_hints()

const GreasePencilEditHints * blender::bke::GeometrySet::get_grease_pencil_edit_hints ( ) const

Returns read-only Grease Pencil edit hints or null.

Definition at line 360 of file geometry_set.cc.

References get_component(), blender::bke::GeometryComponentEditData::grease_pencil_edit_hints_, and nullptr.

◆ get_grease_pencil_edit_hints_for_write()

GreasePencilEditHints * blender::bke::GeometrySet::get_grease_pencil_edit_hints_for_write ( )

Returns mutable Grease Pencil edit hints or null.

Definition at line 598 of file geometry_set.cc.

References get_component_for_write(), blender::bke::GeometryComponentEditData::grease_pencil_edit_hints_, and has().

◆ get_grease_pencil_for_write()

◆ get_instances()

◆ get_instances_for_write()

◆ get_mesh()

const Mesh * blender::bke::GeometrySet::get_mesh ( ) const

Returns a read-only mesh or null.

Definition at line 318 of file geometry_set.cc.

References blender::bke::MeshComponent::get(), get_component(), and nullptr.

Referenced by BKE_object_get_evaluated_mesh_no_subsurf_unchecked(), blender::nodes::GeoNodeExecParams::check_input_geometry_set(), compute_boundbox_without_instances(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_edges(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_faces(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_points_mesh(), blender::geometry::gather_meshes_to_realize(), blender::nodes::node_geo_mesh_to_points_cc::geometry_set_mesh_to_points(), make_duplis_geometry_set_impl(), modify_geometry_set(), blender::modifyGeometry(), blender::nodes::node_geo_boolean_cc::node_geo_exec(), blender::nodes::node_geo_dual_mesh_cc::node_geo_exec(), blender::nodes::node_geo_edge_paths_to_curves_cc::node_geo_exec(), blender::nodes::node_geo_edge_split_cc::node_geo_exec(), blender::nodes::node_geo_merge_by_distance_cc::node_geo_exec(), blender::nodes::node_geo_mesh_subdivide_cc::node_geo_exec(), blender::nodes::node_geo_mesh_to_curve_cc::node_geo_exec(), blender::nodes::node_geo_mesh_to_density_grid_cc::node_geo_exec(), blender::nodes::node_geo_mesh_to_sdf_grid_cc::node_geo_exec(), blender::nodes::node_geo_mesh_to_volume_cc::node_geo_exec(), blender::nodes::node_geo_raycast_cc::node_geo_exec(), blender::nodes::node_geo_subdivision_surface_cc::node_geo_exec(), blender::nodes::node_geo_triangulate_cc::node_geo_exec(), operator<<, blender::nodes::node_geo_distribute_points_on_faces_cc::point_distribution_calculate(), replace_mesh(), blender::geometry::separate_geometry(), and blender::nodes::LazyFunctionForForeachGeometryElementZone::try_extract_element_geometries().

◆ get_mesh_for_write()

◆ get_pointcloud()

◆ get_pointcloud_for_write()

◆ get_volume()

const Volume * blender::bke::GeometrySet::get_volume ( ) const

Returns a read-only volume or null.

Definition at line 336 of file geometry_set.cc.

References blender::bke::VolumeComponent::get(), get_component(), and nullptr.

Referenced by compute_boundbox_without_instances(), make_duplis_geometry_set_impl(), operator<<, and replace_volume().

◆ get_volume_for_write()

Volume * blender::bke::GeometrySet::get_volume_for_write ( )

Returns a mutable volume or null. No ownership is transferred.

Definition at line 570 of file geometry_set.cc.

References blender::bke::VolumeComponent::get_for_write(), and nullptr.

Referenced by modify_geometry_set(), modify_geometry_set(), and blender::nodes::node_geo_get_named_grid_cc::node_geo_exec().

◆ has() [1/2]

template<typename Component>
bool blender::bke::GeometrySet::has ( ) const
inline

Definition at line 190 of file BKE_geometry_set.hh.

References BLI_STATIC_ASSERT, has(), and blender::bke::is_geometry_component_v.

Referenced by attribute_foreach(), and has().

◆ has() [2/2]

◆ has_component()

template<typename Component>
bool blender::bke::GeometrySet::has_component ( ) const
inline

◆ has_curves()

bool blender::bke::GeometrySet::has_curves ( ) const

Returns true when the geometry set has a curves component that has a curves data-block.

Definition at line 397 of file geometry_set.cc.

References get_component(), and blender::bke::CurveComponent::has_curves().

Referenced by BKE_displist_make_curveTypes(), blender::nodes::node_geo_curve_fill_cc::curve_fill_calculate(), blender::nodes::node_geo_curve_to_mesh_cc::curve_to_mesh(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_points(), blender::nodes::node_geo_curve_trim_cc::geometry_set_curve_trim(), blender::ed::sculpt_paint::grease_pencil_apply_fill(), is_empty(), blender::ed::greasepencil::join_curves(), blender::geometry::join_curves(), blender::ed::curves::join_objects_exec(), blender::ed::object::modifier_apply_obdata(), blender::modify_drawing(), blender::nodes::node_geo_curve_fillet_cc::node_geo_exec(), blender::nodes::node_geo_curve_length_cc::node_geo_exec(), blender::nodes::node_geo_curve_sample_cc::node_geo_exec(), blender::nodes::node_geo_curve_spline_type_cc::node_geo_exec(), blender::nodes::node_geo_curve_subdivide_cc::node_geo_exec(), blender::nodes::node_geo_curve_to_mesh_cc::node_geo_exec(), blender::nodes::node_geo_curves_to_grease_pencil_cc::node_geo_exec(), blender::nodes::node_geo_deform_curves_on_surface_cc::node_geo_exec(), blender::nodes::node_geo_interpolate_curves_cc::node_geo_exec(), blender::nodes::node_geo_split_to_instances_cc::node_geo_exec(), blender::ed::greasepencil::paste_all_strokes_from_clipboard(), and blender::io::usd::USDCurvesReader::read_geometry().

◆ has_grease_pencil()

◆ has_instances()

◆ has_mesh()

◆ has_pointcloud()

◆ has_realized_data()

bool blender::bke::GeometrySet::has_realized_data ( ) const

◆ has_volume()

bool blender::bke::GeometrySet::has_volume ( ) const

Returns true when the geometry set has a volume component that has a volume.

Definition at line 391 of file geometry_set.cc.

References get_component(), and blender::bke::VolumeComponent::has_volume().

Referenced by is_empty(), and blender::nodes::node_geo_distribute_points_in_volume_cc::node_geo_exec().

◆ hash()

uint64_t blender::bke::GeometrySet::hash ( ) const
inline

Definition at line 451 of file BKE_geometry_set.hh.

References blender::get_default_hash().

◆ is_empty()

bool blender::bke::GeometrySet::is_empty ( ) const

Return true if the geometry set has any component that isn't empty.

Definition at line 424 of file geometry_set.cc.

References has_curves(), has_grease_pencil(), has_instances(), has_mesh(), has_pointcloud(), and has_volume().

Referenced by blender::nodes::node_geo_duplicate_elements_cc::node_geo_exec(), and blender::nodes::node_geo_raycast_cc::node_geo_exec().

◆ keep_only()

void blender::bke::GeometrySet::keep_only ( Span< GeometryComponent::Type > component_types)

◆ operator=() [1/2]

GeometrySet & blender::bke::GeometrySet::operator= ( const GeometrySet & other)
default

References GeometrySet().

◆ operator=() [2/2]

GeometrySet & blender::bke::GeometrySet::operator= ( GeometrySet && other)
default

References GeometrySet().

◆ owns_direct_data()

bool blender::bke::GeometrySet::owns_direct_data ( ) const

Definition at line 297 of file geometry_set.cc.

◆ remove() [1/2]

template<typename Component>
void blender::bke::GeometrySet::remove ( )
inline

◆ remove() [2/2]

◆ replace_curves()

◆ replace_grease_pencil()

◆ replace_instances()

◆ replace_mesh()

void blender::bke::GeometrySet::replace_mesh ( Mesh * mesh,
GeometryOwnershipType ownership = GeometryOwnershipType::Owned )

Clear the existing mesh and replace it with the given one.

Definition at line 473 of file geometry_set.cc.

References get_component_for_write(), get_mesh(), remove(), and blender::bke::MeshComponent::replace().

Referenced by blender::bke::add_final_mesh_as_geometry_component(), curve_calc_modifiers_post(), blender::nodes::node_geo_curve_fill_cc::curve_fill_calculate(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_faces(), blender::nodes::node_geo_duplicate_elements_cc::duplicate_points_mesh(), evaluate_surface_object(), blender::geometry::execute_realize_mesh_tasks(), from_mesh(), blender::nodes::node_geo_points_to_vertices_cc::geometry_set_points_to_vertices(), blender::bke::modifier_modify_mesh_and_geometry_set(), blender::nodes::node_geo_boolean_cc::node_geo_exec(), blender::nodes::node_geo_bounding_box_cc::node_geo_exec(), blender::nodes::node_geo_convex_hull_cc::node_geo_exec(), blender::nodes::node_geo_curve_to_mesh_cc::node_geo_exec(), blender::nodes::node_geo_dual_mesh_cc::node_geo_exec(), blender::nodes::node_geo_merge_by_distance_cc::node_geo_exec(), blender::nodes::node_geo_mesh_subdivide_cc::node_geo_exec(), blender::nodes::node_geo_subdivision_surface_cc::node_geo_exec(), blender::nodes::node_geo_triangulate_cc::node_geo_exec(), blender::nodes::node_geo_volume_to_mesh_cc::node_geo_exec(), blender::io::alembic::AbcMeshReader::read_geometry(), blender::io::alembic::AbcSubDReader::read_geometry(), blender::io::usd::USDMeshReader::read_geometry(), blender::io::usd::USDShapeReader::read_geometry(), and blender::geometry::separate_geometry().

◆ replace_pointcloud()

◆ replace_volume()

◆ operator<<

◆ operator==

bool operator== ( const GeometrySet & a,
const GeometrySet & b )
friend

Definition at line 445 of file BKE_geometry_set.hh.

References b, GeometrySet(), and name.

Member Data Documentation

◆ name


The documentation for this struct was generated from the following files: