Blender V4.3
geometry_ops.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2020 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#include "WM_api.hh"
10
11#include "ED_geometry.hh"
12
13#include "geometry_intern.hh"
14
15/**************************** registration **********************************/
16
18{
19 using namespace blender::ed::geometry;
20
21 WM_operatortype_append(GEOMETRY_OT_attribute_add);
22 WM_operatortype_append(GEOMETRY_OT_attribute_remove);
23 WM_operatortype_append(GEOMETRY_OT_color_attribute_add);
24 WM_operatortype_append(GEOMETRY_OT_color_attribute_remove);
25 WM_operatortype_append(GEOMETRY_OT_color_attribute_render_set);
26 WM_operatortype_append(GEOMETRY_OT_color_attribute_duplicate);
27 WM_operatortype_append(GEOMETRY_OT_attribute_convert);
28 WM_operatortype_append(GEOMETRY_OT_color_attribute_convert);
29 WM_operatortype_append(GEOMETRY_OT_execute_node_group);
30 WM_operatortype_append(GEOMETRY_OT_geometry_randomization);
31}
void ED_operatortypes_geometry()
void WM_operatortype_append(void(*opfunc)(wmOperatorType *))