Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacques Lucke <jacques@blender.org>2021-02-19 14:29:37 +0300
committerJacques Lucke <jacques@blender.org>2021-02-19 14:31:38 +0300
commit14f1d8962f6c8ab609daff3cca1702b35eee5b68 (patch)
tree9b4e8014a1919e929bc127dc6caf4e0cea89d51d /source/blender/blenkernel/BKE_geometry_set.hh
parented070dd51d4805f0af57acad02abf93ab80872a6 (diff)
Geometry Nodes: add method to get all geometry components in a set
Previously, functions would have to ask for every geometry type explicitely. Using a vector is return type is fine. In practice this will probably never allocate because of the small buffer optimization in vector.
Diffstat (limited to 'source/blender/blenkernel/BKE_geometry_set.hh')
-rw-r--r--source/blender/blenkernel/BKE_geometry_set.hh2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_geometry_set.hh b/source/blender/blenkernel/BKE_geometry_set.hh
index 02b3c88183a..5b1882d0d4c 100644
--- a/source/blender/blenkernel/BKE_geometry_set.hh
+++ b/source/blender/blenkernel/BKE_geometry_set.hh
@@ -308,6 +308,8 @@ struct GeometrySet {
void add(const GeometryComponent &component);
+ blender::Vector<const GeometryComponent *> get_components_for_read() const;
+
void compute_boundbox_without_instances(blender::float3 *r_min, blender::float3 *r_max) const;
friend std::ostream &operator<<(std::ostream &stream, const GeometrySet &geometry_set);