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

bmesh_py_ops_call.h « bmesh « python « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61c81f37b311c533f62c14f48dbfab25e8b44ac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2012 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup pybmesh
 */

#pragma once

typedef struct {
  PyObject_HEAD /* Required Python macro. */
  const char *opname;
} BPy_BMeshOpFunc;

/**
 * This is the `__call__` for `bmesh.ops.xxx()`.
 */
PyObject *BPy_BMO_call(BPy_BMeshOpFunc *self, PyObject *args, PyObject *kw);