|
Blender
V3.3
|
#include <Python.h>#include "BLI_utildefines.h"#include "../mathutils/mathutils.h"#include "bmesh.h"#include "bmesh_py_geometry.h"#include "bmesh_py_types.h"Go to the source code of this file.
Functions | |
| PyDoc_STRVAR (bpy_bm_geometry_intersect_face_point_doc, ".. method:: intersect_face_point(face, point)\n" "\n" " Tests if the projection of a point is inside a face (using the face's normal).\n" "\n" " :arg face: The face to test.\n" " :type face: :class:`bmesh.types.BMFace`\n" " :arg point: The point to test.\n" " :type point: float triplet\n" " :return: True when the projection of the point is in the face.\n" " :rtype: bool\n") | |
| static PyObject * | bpy_bm_geometry_intersect_face_point (BPy_BMFace *UNUSED(self), PyObject *args) |
| PyDoc_STRVAR (BPy_BM_utils_doc, "This module provides access to bmesh geometry evaluation functions.") | |
| PyObject * | BPyInit_bmesh_geometry (void) |
Variables | |
| static struct PyMethodDef | BPy_BM_geometry_methods [] |
| static struct PyModuleDef | BPy_BM_geometry_module_def |
This file defines the 'bmesh.geometry' module. Utility functions for operating on 'bmesh.types'
Definition in file bmesh_py_geometry.c.
|
static |
Definition at line 32 of file bmesh_py_geometry.c.
References BM_face_point_inside_test(), BPY_BM_CHECK_OBJ, BPy_BMFace_Type, BPy_BMFace::f, mathutils_array_parse(), NULL, point, and ret.
| PyObject* BPyInit_bmesh_geometry | ( | void | ) |
Definition at line 75 of file bmesh_py_geometry.c.
References BPy_BM_geometry_module_def.
Referenced by BPyInit_bmesh().
| PyDoc_STRVAR | ( | bpy_bm_geometry_intersect_face_point_doc | , |
| ".. method:: intersect_face_point(face, point)\n" "\n" " Tests if the projection of a point is inside a face (using the face's normal).\n" "\n" " :arg face: The face to test.\n" " :type face: :class:`bmesh.types.BMFace`\n" " :arg point: The point to test.\n" " :type point: float triplet\n" " :return: True when the projection of the point is in the face.\n" " :rtype: bool\n" | |||
| ) |
| PyDoc_STRVAR | ( | BPy_BM_utils_doc | , |
| "This module provides access to bmesh geometry evaluation functions." | |||
| ) |
|
static |
Definition at line 32 of file bmesh_py_geometry.c.
|
static |
Definition at line 61 of file bmesh_py_geometry.c.
Referenced by BPyInit_bmesh_geometry().