2014-09-10 14:25:57 +02:00
|
|
|
/*
|
|
|
|
* ***** BEGIN GPL LICENSE BLOCK *****
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* The Original Code is Copyright (C) Blender Foundation
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
*
|
|
|
|
* Contributor(s): Lukas Toenne
|
|
|
|
*
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
*/
|
|
|
|
|
2015-05-24 22:18:16 +10:00
|
|
|
/** \file blender/physics/BPH_mass_spring.h
|
2015-05-20 12:54:45 +10:00
|
|
|
* \ingroup bph
|
|
|
|
*/
|
|
|
|
|
2014-09-13 14:36:46 +02:00
|
|
|
#ifndef __BPH_MASS_SPRING_H__
|
|
|
|
#define __BPH_MASS_SPRING_H__
|
2014-09-10 14:25:57 +02:00
|
|
|
|
2014-09-14 13:23:14 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-09-13 18:45:58 +02:00
|
|
|
struct Implicit_Data;
|
2014-10-31 20:29:51 +01:00
|
|
|
struct Object;
|
2014-09-14 13:23:14 +02:00
|
|
|
struct ClothModifierData;
|
2014-10-31 20:29:51 +01:00
|
|
|
struct ListBase;
|
2018-06-22 14:42:03 +02:00
|
|
|
struct Depsgraph;
|
2014-10-31 20:29:51 +01:00
|
|
|
struct VoxelData;
|
2014-09-13 18:45:58 +02:00
|
|
|
|
2014-09-20 21:05:46 +02:00
|
|
|
typedef enum eMassSpringSolverStatus {
|
|
|
|
BPH_SOLVER_SUCCESS = (1 << 0),
|
|
|
|
BPH_SOLVER_NUMERICAL_ISSUE = (1 << 1),
|
|
|
|
BPH_SOLVER_NO_CONVERGENCE = (1 << 2),
|
|
|
|
BPH_SOLVER_INVALID_INPUT = (1 << 3),
|
|
|
|
} eMassSpringSolverStatus;
|
|
|
|
|
2014-09-13 18:45:58 +02:00
|
|
|
struct Implicit_Data *BPH_mass_spring_solver_create(int numverts, int numsprings);
|
|
|
|
void BPH_mass_spring_solver_free(struct Implicit_Data *id);
|
2015-07-31 14:00:07 +10:00
|
|
|
int BPH_mass_spring_solver_numvert(struct Implicit_Data *id);
|
2014-09-13 18:45:58 +02:00
|
|
|
|
|
|
|
int BPH_cloth_solver_init(struct Object *ob, struct ClothModifierData *clmd);
|
|
|
|
void BPH_cloth_solver_free(struct ClothModifierData *clmd);
|
2018-06-22 14:42:03 +02:00
|
|
|
int BPH_cloth_solve(struct Depsgraph *depsgraph, struct Object *ob, float frame, struct ClothModifierData *clmd, struct ListBase *effectors);
|
2014-09-14 13:23:14 +02:00
|
|
|
void BKE_cloth_solver_set_positions(struct ClothModifierData *clmd);
|
2014-09-11 17:49:26 +02:00
|
|
|
|
2014-09-14 13:23:14 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-09-10 14:25:57 +02:00
|
|
|
#endif
|