Changeset View
Changeset View
Standalone View
Standalone View
source/blender/python/intern/bpy_rna.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show All 9 Lines | |||||
| * classes for most of the data Python accesses in blender. | * classes for most of the data Python accesses in blender. | ||||
| */ | */ | ||||
| #include <Python.h> | #include <Python.h> | ||||
| #include <float.h> /* FLT_MIN/MAX */ | #include <float.h> /* FLT_MIN/MAX */ | ||||
| #include <stddef.h> | #include <stddef.h> | ||||
| #include "RNA_path.h" | |||||
| #include "RNA_types.h" | #include "RNA_types.h" | ||||
| #include "BLI_bitmap.h" | #include "BLI_bitmap.h" | ||||
| #include "BLI_dynstr.h" | #include "BLI_dynstr.h" | ||||
| #include "BLI_listbase.h" | #include "BLI_listbase.h" | ||||
| #include "BLI_math_rotation.h" | #include "BLI_math_rotation.h" | ||||
| #include "BLI_string.h" | #include "BLI_string.h" | ||||
| #include "BLI_utildefines.h" | #include "BLI_utildefines.h" | ||||
| ▲ Show 20 Lines • Show All 9,202 Lines • Show Last 20 Lines | |||||