2011-02-18 13:05:18 +00:00
|
|
|
/*
|
2008-04-25 18:22:20 +00: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,
|
2010-02-12 13:34:04 +00:00
|
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2008-04-25 18:22:20 +00:00
|
|
|
*
|
|
|
|
|
* The Original Code is Copyright (C) Blender Foundation.
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* The Original Code is: all of this file.
|
|
|
|
|
*
|
|
|
|
|
* Contributor(s): none yet.
|
|
|
|
|
*
|
|
|
|
|
* ***** END GPL LICENSE BLOCK *****
|
|
|
|
|
*/
|
2012-02-17 18:59:41 +00:00
|
|
|
#ifndef __BKE_SHRINKWRAP_H__
|
|
|
|
|
#define __BKE_SHRINKWRAP_H__
|
2008-04-25 18:22:20 +00:00
|
|
|
|
2011-02-18 13:05:18 +00:00
|
|
|
/** \file BKE_shrinkwrap.h
|
|
|
|
|
* \ingroup bke
|
|
|
|
|
*/
|
|
|
|
|
|
2008-07-18 22:24:20 +00:00
|
|
|
/* Shrinkwrap stuff */
|
2008-08-07 15:18:47 +00:00
|
|
|
#include "BKE_bvhutils.h"
|
|
|
|
|
|
2008-08-12 20:43:10 +00:00
|
|
|
/*
|
|
|
|
|
* Shrinkwrap is composed by a set of functions and options that define the type of shrink.
|
|
|
|
|
*
|
|
|
|
|
* 3 modes are available:
|
|
|
|
|
* - Nearest vertex
|
|
|
|
|
* - Nearest surface
|
|
|
|
|
* - Normal projection
|
|
|
|
|
*
|
|
|
|
|
* ShrinkwrapCalcData encapsulates all needed data for shrinkwrap functions.
|
2012-03-18 07:38:51 +00:00
|
|
|
* (So that you don't have to pass an enormous amount of arguments to functions)
|
2008-08-12 20:43:10 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-04-25 18:22:20 +00:00
|
|
|
struct Object;
|
2018-05-08 19:04:12 +02:00
|
|
|
struct Mesh;
|
2009-04-20 15:06:46 +00:00
|
|
|
struct MVert;
|
|
|
|
|
struct MDeformVert;
|
2018-05-09 12:51:03 +02:00
|
|
|
struct ModifierEvalContext;
|
2008-04-25 18:22:20 +00:00
|
|
|
struct ShrinkwrapModifierData;
|
2008-07-22 11:50:50 +00:00
|
|
|
struct BVHTree;
|
2014-08-01 16:28:31 +02:00
|
|
|
struct SpaceTransform;
|
2008-04-25 18:22:20 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
typedef struct ShrinkwrapTreeData {
|
|
|
|
|
Mesh *mesh;
|
2008-05-07 12:45:02 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
BVHTree *bvh;
|
|
|
|
|
BVHTreeFromMesh treeData;
|
2008-04-30 17:55:26 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
float (*clnors)[3];
|
|
|
|
|
} ShrinkwrapTreeData;
|
2008-07-22 11:50:50 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
/* Checks if the modifier needs target normals with these settings. */
|
|
|
|
|
bool BKE_shrinkwrap_needs_normals(int shrinkType, int shrinkMode);
|
2008-04-30 17:55:26 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
/* Initializes the mesh data structure from the given mesh and settings. */
|
|
|
|
|
bool BKE_shrinkwrap_init_tree(struct ShrinkwrapTreeData *data, Mesh *mesh, int shrinkType, int shrinkMode, bool force_normals);
|
2008-11-03 23:17:36 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
/* Frees the tree data if necessary. */
|
|
|
|
|
void BKE_shrinkwrap_free_tree(struct ShrinkwrapTreeData *data);
|
2008-04-30 17:55:26 +00:00
|
|
|
|
2018-10-03 19:09:43 +03:00
|
|
|
/* Implementation of the Shrinkwrap modifier */
|
2018-06-18 11:51:02 +02:00
|
|
|
void shrinkwrapModifier_deform(struct ShrinkwrapModifierData *smd, struct Scene *scene, struct Object *ob, struct Mesh *mesh,
|
2018-05-30 11:34:08 +02:00
|
|
|
float (*vertexCos)[3], int numVerts);
|
2008-08-12 20:43:10 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function casts a ray in the given BVHTree.. but it takes into consideration the space_transform, that is:
|
|
|
|
|
*
|
2012-09-06 01:31:15 +00:00
|
|
|
* if transf was configured with "SPACE_TRANSFORM_SETUP( &transf, ob1, ob2 )"
|
2008-08-12 20:43:10 +00:00
|
|
|
* then the input (vert, dir, BVHTreeRayHit) must be defined in ob1 coordinates space
|
|
|
|
|
* and the BVHTree must be built in ob2 coordinate space.
|
|
|
|
|
*
|
2012-12-23 01:18:35 +00:00
|
|
|
* Thus it provides an easy way to cast the same ray across several trees
|
|
|
|
|
* (where each tree was built on its own coords space)
|
2008-08-12 20:43:10 +00:00
|
|
|
*/
|
2014-03-20 22:56:28 +11:00
|
|
|
bool BKE_shrinkwrap_project_normal(
|
2018-05-04 07:39:07 -03:00
|
|
|
char options, const float vert[3], const float dir[3], const float ray_radius,
|
2018-10-03 19:09:43 +03:00
|
|
|
const struct SpaceTransform *transf, struct ShrinkwrapTreeData *tree, BVHTreeRayHit *hit);
|
|
|
|
|
|
|
|
|
|
/* Computes a smooth normal of the target (if applicable) at the hit location. */
|
|
|
|
|
void BKE_shrinkwrap_compute_smooth_normal(
|
|
|
|
|
const struct ShrinkwrapTreeData *tree, const struct SpaceTransform *transform,
|
|
|
|
|
int looptri_idx, const float hit_co[3], const float hit_no[3], float r_no[3]);
|
2008-08-12 20:43:10 +00:00
|
|
|
|
2018-07-07 18:39:45 +03:00
|
|
|
/* Apply the shrink to surface modes to the given original coordinates and nearest point. */
|
|
|
|
|
void BKE_shrinkwrap_snap_point_to_surface(
|
2018-10-03 19:09:43 +03:00
|
|
|
const struct ShrinkwrapTreeData *tree, const struct SpaceTransform *transform,
|
|
|
|
|
int mode, int hit_idx, const float hit_co[3], const float hit_no[3], float goal_dist,
|
2018-07-07 18:39:45 +03:00
|
|
|
const float point_co[3], float r_point_co[3]);
|
|
|
|
|
|
2008-08-12 20:43:10 +00:00
|
|
|
/*
|
|
|
|
|
* NULL initializers to local data
|
|
|
|
|
*/
|
2012-05-12 20:39:39 +00:00
|
|
|
#define NULL_ShrinkwrapCalcData {NULL, }
|
|
|
|
|
#define NULL_BVHTreeFromMesh {NULL, }
|
|
|
|
|
#define NULL_BVHTreeRayHit {NULL, }
|
|
|
|
|
#define NULL_BVHTreeNearest {0, }
|
2008-08-04 14:27:25 +00:00
|
|
|
|
2012-12-23 01:18:35 +00:00
|
|
|
#endif /* __BKE_SHRINKWRAP_H__ */
|