25 lines
568 B
C++
25 lines
568 B
C++
/* SPDX-FileCopyrightText: 2019 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup depsgraph
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
struct Collection;
|
|
struct ListBase;
|
|
|
|
namespace blender::deg {
|
|
|
|
struct Depsgraph;
|
|
|
|
ListBase *build_effector_relations(Depsgraph *graph, Collection *collection);
|
|
ListBase *build_collision_relations(Depsgraph *graph,
|
|
Collection *collection,
|
|
unsigned int modifier_type);
|
|
void clear_physics_relations(Depsgraph *graph);
|
|
|
|
} // namespace blender::deg
|