Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_node_types.h
| Show First 20 Lines • Show All 1,142 Lines • ▼ Show 20 Lines | typedef struct NodeGeometryRotatePoints { | ||||
| uint8_t input_type_angle; | uint8_t input_type_angle; | ||||
| uint8_t input_type_rotation; | uint8_t input_type_rotation; | ||||
| char _pad[3]; | char _pad[3]; | ||||
| } NodeGeometryRotatePoints; | } NodeGeometryRotatePoints; | ||||
| typedef struct NodeGeometryAlignRotationToVector { | typedef struct NodeGeometryAlignRotationToVector { | ||||
| /* GeometryNodeAlignRotationToVectorAxis */ | /* GeometryNodeAlignRotationToVectorAxis */ | ||||
| uint8_t axis; | uint8_t axis; | ||||
| /* GeometryNodeAlignRotationToVectorPivotAxis */ | |||||
| uint8_t pivot_axis; | |||||
| /* GeometryNodeAttributeInputMode */ | /* GeometryNodeAttributeInputMode */ | ||||
| uint8_t input_type_factor; | uint8_t input_type_factor; | ||||
| uint8_t input_type_vector; | uint8_t input_type_vector; | ||||
| char _pad[5]; | |||||
| } NodeGeometryAlignRotationToVector; | } NodeGeometryAlignRotationToVector; | ||||
| typedef struct NodeGeometryPointScale { | typedef struct NodeGeometryPointScale { | ||||
| /* GeometryNodeAttributeInputMode */ | /* GeometryNodeAttributeInputMode */ | ||||
| uint8_t input_type; | uint8_t input_type; | ||||
| char _pad[7]; | char _pad[7]; | ||||
| } NodeGeometryPointScale; | } NodeGeometryPointScale; | ||||
| ▲ Show 20 Lines • Show All 490 Lines • ▼ Show 20 Lines | |||||
| } GeometryNodeRotatePointsSpace; | } GeometryNodeRotatePointsSpace; | ||||
| typedef enum GeometryNodeAlignRotationToVectorAxis { | typedef enum GeometryNodeAlignRotationToVectorAxis { | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_X = 0, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_X = 0, | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Y = 1, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Y = 1, | ||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Z = 2, | GEO_NODE_ALIGN_ROTATION_TO_VECTOR_AXIS_Z = 2, | ||||
| } GeometryNodeAlignRotationToVectorAxis; | } GeometryNodeAlignRotationToVectorAxis; | ||||
| typedef enum GeometryNodeAlignRotationToVectorPivotAxis { | |||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_PIVOT_AXIS_AUTO = 0, | |||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_PIVOT_AXIS_X = 1, | |||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_PIVOT_AXIS_Y = 2, | |||||
| GEO_NODE_ALIGN_ROTATION_TO_VECTOR_PIVOT_AXIS_Z = 3, | |||||
| } GeometryNodeAlignRotationToVectorPivotAxis; | |||||
| typedef enum GeometryNodeTransformSpace { | typedef enum GeometryNodeTransformSpace { | ||||
| GEO_NODE_TRANSFORM_SPACE_ORIGINAL = 0, | GEO_NODE_TRANSFORM_SPACE_ORIGINAL = 0, | ||||
| GEO_NODE_TRANSFORM_SPACE_RELATIVE = 1, | GEO_NODE_TRANSFORM_SPACE_RELATIVE = 1, | ||||
| } GeometryNodeTransformSpace; | } GeometryNodeTransformSpace; | ||||
| typedef enum GeometryNodePointsToVolumeResolutionMode { | typedef enum GeometryNodePointsToVolumeResolutionMode { | ||||
| GEO_NODE_POINTS_TO_VOLUME_RESOLUTION_MODE_AMOUNT = 0, | GEO_NODE_POINTS_TO_VOLUME_RESOLUTION_MODE_AMOUNT = 0, | ||||
| GEO_NODE_POINTS_TO_VOLUME_RESOLUTION_MODE_SIZE = 1, | GEO_NODE_POINTS_TO_VOLUME_RESOLUTION_MODE_SIZE = 1, | ||||
| } GeometryNodePointsToVolumeResolutionMode; | } GeometryNodePointsToVolumeResolutionMode; | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } | } | ||||
| #endif | #endif | ||||