prepare for adding bmesh py api for customdata layer access - no functional changes.
This commit is contained in:
@@ -33,13 +33,15 @@ set(INC_SYS
|
||||
|
||||
set(SRC
|
||||
bmesh_py_api.c
|
||||
bmesh_py_select.c
|
||||
bmesh_py_types.c
|
||||
bmesh_py_types_customdata.c
|
||||
bmesh_py_types_select.c
|
||||
bmesh_py_utils.c
|
||||
|
||||
bmesh_py_api.h
|
||||
bmesh_py_select.h
|
||||
bmesh_py_types.h
|
||||
bmesh_py_types_customdata.h
|
||||
bmesh_py_types_select.h
|
||||
bmesh_py_utils.h
|
||||
)
|
||||
|
||||
|
@@ -34,8 +34,8 @@
|
||||
#include "bmesh.h"
|
||||
|
||||
#include "bmesh_py_types.h"
|
||||
#include "bmesh_py_types_select.h"
|
||||
#include "bmesh_py_utils.h"
|
||||
#include "bmesh_py_select.h"
|
||||
|
||||
#include "BLI_utildefines.h"
|
||||
|
||||
|
@@ -44,8 +44,8 @@
|
||||
|
||||
#include "../generic/py_capi_utils.h"
|
||||
|
||||
#include "bmesh_py_select.h"
|
||||
#include "bmesh_py_types.h" /* own include */
|
||||
#include "bmesh_py_types_select.h"
|
||||
|
||||
/* Common Flags
|
||||
* ************ */
|
||||
|
@@ -23,7 +23,7 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
/** \file blender/python/bmesh/bmesh_py_select.c
|
||||
/** \file blender/python/bmesh/bmesh_py_types_select.c
|
||||
* \ingroup pybmesh
|
||||
*
|
||||
* This file defines the types for 'BMesh.select_history'
|
||||
@@ -38,7 +38,7 @@
|
||||
#include "bmesh.h"
|
||||
|
||||
#include "bmesh_py_types.h"
|
||||
#include "bmesh_py_select.h"
|
||||
#include "bmesh_py_types_select.h"
|
||||
|
||||
#include "BLI_utildefines.h"
|
||||
#include "BLI_listbase.h"
|
@@ -23,12 +23,12 @@
|
||||
* ***** END GPL LICENSE BLOCK *****
|
||||
*/
|
||||
|
||||
/** \file blender/python/bmesh/bmesh_py_select.h
|
||||
/** \file blender/python/bmesh/bmesh_py_types_select.h
|
||||
* \ingroup pybmesh
|
||||
*/
|
||||
|
||||
#ifndef __BMESH_PY_SELECT_H__
|
||||
#define __BMESH_PY_SELECT_H__
|
||||
#ifndef __BMESH_PY_TYPES_SELECT_H__
|
||||
#define __BMESH_PY_TYPES_SELECT_H__
|
||||
|
||||
struct BPy_BMesh;
|
||||
|
Reference in New Issue
Block a user