From 3a7dc6ed7f8860dbb263ebf61615734029b07a33 Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Tue, 8 Apr 2025 12:28:57 +0200 Subject: [PATCH] Cleanup: improve comment --- source/blender/python/intern/bpy_geometry_set.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source/blender/python/intern/bpy_geometry_set.cc b/source/blender/python/intern/bpy_geometry_set.cc index a939efd042e..df73dd6bd34 100644 --- a/source/blender/python/intern/bpy_geometry_set.cc +++ b/source/blender/python/intern/bpy_geometry_set.cc @@ -4,6 +4,13 @@ /** \file * \ingroup pythonintern + * + * This file contains the `bpy.types.GeometrySet` Python API which is a wrapper for the internal + * `GeometrySet` type. + * + * It's not implemented as RNA type because a `GeometrySet` is standalone (i.e. is not necessarily + * owned by anything else in Blender like an ID), is wrapping a DNA type and is itself a + * non-trivial owner of other data (like sub-geometries). */ #include