Changeset View
Changeset View
Standalone View
Standalone View
source/blender/depsgraph/DEG_depsgraph_physics.h
| Show All 17 Lines | |||||
| */ | */ | ||||
| /** \file | /** \file | ||||
| * \ingroup depsgraph | * \ingroup depsgraph | ||||
| * | * | ||||
| * Physics utilities for effectors and collision. | * Physics utilities for effectors and collision. | ||||
| */ | */ | ||||
| #ifndef __DEG_DEPSGRAPH_PHYSICS_H__ | #pragma once | ||||
| #define __DEG_DEPSGRAPH_PHYSICS_H__ | |||||
| #include "DEG_depsgraph.h" | #include "DEG_depsgraph.h" | ||||
| struct DepsNodeHandle; | struct DepsNodeHandle; | ||||
| struct Depsgraph; | struct Depsgraph; | ||||
| struct EffectorWeights; | struct EffectorWeights; | ||||
| struct ListBase; | struct ListBase; | ||||
| struct Object; | struct Object; | ||||
| Show All 33 Lines | void DEG_add_forcefield_relations(struct DepsNodeHandle *handle, | ||||
| struct EffectorWeights *eff, | struct EffectorWeights *eff, | ||||
| bool add_absorption, | bool add_absorption, | ||||
| int skip_forcefield, | int skip_forcefield, | ||||
| const char *name); | const char *name); | ||||
| #ifdef __cplusplus | #ifdef __cplusplus | ||||
| } /* extern "C" */ | } /* extern "C" */ | ||||
| #endif | #endif | ||||
| #endif /* __DEG_DEPSGRAPH_PHYSICS_H__ */ | |||||