| 
									
										
										
										
											2011-10-25 16:17:26 +00:00
										 |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +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 | 
					
						
							| 
									
										
										
										
											2012-02-11 04:16:17 +00:00
										 |  |  |  * of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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, | 
					
						
							| 
									
										
										
										
											2012-02-11 04:16:17 +00:00
										 |  |  |  * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * The Original Code is Copyright (C) 2007 Blender Foundation. | 
					
						
							|  |  |  |  * All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2012-03-24 00:20:36 +00:00
										 |  |  |  * Contributor(s): Joseph Eagar, Joshua Leung, Howard Trickey, | 
					
						
							|  |  |  |  *                 Campbell Barton | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * ***** END GPL LICENSE BLOCK ***** | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-24 00:20:36 +00:00
										 |  |  | /** \file blender/editors/mesh/editmesh_knife.c
 | 
					
						
							|  |  |  |  *  \ingroup edmesh | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-20 01:02:39 +00:00
										 |  |  | #ifdef _MSC_VER
 | 
					
						
							|  |  |  | #  define _USE_MATH_DEFINES
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "MEM_guardedalloc.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | #include "BLI_listbase.h"
 | 
					
						
							|  |  |  | #include "BLI_string.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | #include "BLI_array.h"
 | 
					
						
							| 
									
										
										
										
											2013-07-28 10:38:25 +00:00
										 |  |  | #include "BLI_alloca.h"
 | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | #include "BLI_linklist.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | #include "BLI_math.h"
 | 
					
						
							|  |  |  | #include "BLI_smallhash.h"
 | 
					
						
							| 
									
										
										
										
											2012-03-01 20:09:17 +00:00
										 |  |  | #include "BLI_memarena.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-19 15:45:56 +00:00
										 |  |  | #include "BLF_translation.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | #include "BKE_DerivedMesh.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | #include "BKE_context.h"
 | 
					
						
							| 
									
										
										
										
											2013-04-16 05:23:34 +00:00
										 |  |  | #include "BKE_editmesh.h"
 | 
					
						
							|  |  |  | #include "BKE_editmesh_bvh.h"
 | 
					
						
							| 
									
										
										
										
											2013-11-26 09:44:08 +11:00
										 |  |  | #include "BKE_report.h"
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "BIF_gl.h"
 | 
					
						
							|  |  |  | #include "BIF_glutil.h" /* for paint cursor */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "ED_screen.h"
 | 
					
						
							|  |  |  | #include "ED_space_api.h"
 | 
					
						
							|  |  |  | #include "ED_view3d.h"
 | 
					
						
							|  |  |  | #include "ED_mesh.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "WM_api.h"
 | 
					
						
							|  |  |  | #include "WM_types.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-11 08:46:56 +00:00
										 |  |  | #include "DNA_object_types.h"
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:44:28 +00:00
										 |  |  | #include "UI_resources.h"
 | 
					
						
							| 
									
										
										
										
											2012-02-11 08:46:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | #include "RNA_access.h"
 | 
					
						
							|  |  |  | #include "RNA_define.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-01 10:18:01 +00:00
										 |  |  | #include "mesh_intern.h"  /* own include */
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* this code here is kindof messy. . .I might need to eventually rework it - joeedh */ | 
					
						
							| 
									
										
										
										
											2011-04-13 00:35:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | #define KMAXDIST    10  /* max mouse distance from edge before not detecting it */
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-05 04:43:46 +00:00
										 |  |  | #define KNIFE_FLT_EPS          0.00001f
 | 
					
						
							|  |  |  | #define KNIFE_FLT_EPS_SQUARED  (KNIFE_FLT_EPS * KNIFE_FLT_EPS)
 | 
					
						
							| 
									
										
										
										
											2014-03-06 10:55:12 -05:00
										 |  |  | #define KNIFE_FLT_EPSBIG       0.0005f
 | 
					
						
							| 
									
										
										
										
											2012-10-05 04:43:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | typedef struct KnifeColors { | 
					
						
							|  |  |  | 	unsigned char line[3]; | 
					
						
							|  |  |  | 	unsigned char edge[3]; | 
					
						
							|  |  |  | 	unsigned char curpoint[3]; | 
					
						
							|  |  |  | 	unsigned char curpoint_a[4]; | 
					
						
							|  |  |  | 	unsigned char point[3]; | 
					
						
							|  |  |  | 	unsigned char point_a[4]; | 
					
						
							|  |  |  | } KnifeColors; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | /* knifetool operator */ | 
					
						
							|  |  |  | typedef struct KnifeVert { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	BMVert *v; /* non-NULL if this is an original vert */ | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	ListBase edges; | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 	ListBase faces; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	float co[3], cageco[3], sco[2]; /* sco is screen coordinates for cageco */ | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool is_face, in_space; | 
					
						
							|  |  |  | 	bool draw; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } KnifeVert; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct Ref { | 
					
						
							|  |  |  | 	struct Ref *next, *prev; | 
					
						
							|  |  |  | 	void *ref; | 
					
						
							|  |  |  | } Ref; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef struct KnifeEdge { | 
					
						
							|  |  |  | 	KnifeVert *v1, *v2; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	BMFace *basef; /* face to restrict face fill to */ | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	ListBase faces; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-09 17:12:24 +00:00
										 |  |  | 	BMEdge *e /* , *e_old */; /* non-NULL if this is an original edge */ | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool draw; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } KnifeEdge; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | typedef struct KnifeLineHit { | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	float hit[3], cagehit[3]; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	float schit[2]; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	float l; /* lambda along cut line */ | 
					
						
							|  |  |  | 	float perc; /* lambda along hit line */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	float m; /* depth front-to-back */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Exactly one of kfe, v, or f should be non-NULL,
 | 
					
						
							|  |  |  | 	 * saying whether cut line crosses and edge, | 
					
						
							|  |  |  | 	 * is snapped to a vert, or is in the middle of some face. */ | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	KnifeVert *v; | 
					
						
							| 
									
										
										
										
											2010-10-03 21:10:59 +00:00
										 |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | } KnifeLineHit; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | typedef struct KnifePosData { | 
					
						
							|  |  |  | 	float co[3]; | 
					
						
							|  |  |  | 	float cage[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* At most one of vert, edge, or bmface should be non-NULL,
 | 
					
						
							|  |  |  | 	 * saying whether the point is snapped to a vertex, edge, or in a face. | 
					
						
							|  |  |  | 	 * If none are set, this point is in space and is_space should be true. */ | 
					
						
							|  |  |  | 	KnifeVert *vert; | 
					
						
							|  |  |  | 	KnifeEdge *edge; | 
					
						
							|  |  |  | 	BMFace *bmface; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool is_space; | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	float mval[2]; /* mouse screen position (may be non-integral if snapped to something) */ | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | } KnifePosData; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | /* struct for properties used while drawing */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | typedef struct KnifeTool_OpData { | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	ARegion *ar;        /* region that knifetool was activated in */ | 
					
						
							|  |  |  | 	void *draw_handle;  /* for drawing preview loop */ | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	ViewContext vc;     /* note: _don't_ use 'mval', instead use the one we define below */ | 
					
						
							|  |  |  | 	float mval[2];      /* mouse value with snapping applied */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | 	//bContext *C;
 | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	Object *ob; | 
					
						
							|  |  |  | 	BMEditMesh *em; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	MemArena *arena; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	GHash *origvertmap; | 
					
						
							|  |  |  | 	GHash *origedgemap; | 
					
						
							|  |  |  | 	GHash *kedgefacemap; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	GHash *facetrimap; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	BMBVHTree *bmbvh; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_mempool *kverts; | 
					
						
							|  |  |  | 	BLI_mempool *kedges; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	float vthresh; | 
					
						
							|  |  |  | 	float ethresh; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* used for drag-cutting */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	KnifeLineHit *linehits; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	int totlinehit; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	/* Data for mouse-position-derived data (cur) and previous click (prev) */ | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	KnifePosData curr, prev; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	int totkedge, totkvert; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	BLI_mempool *refs; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	float projmat[4][4]; | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 	KnifeColors colors; | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	/* run by the UI or not */ | 
					
						
							|  |  |  | 	bool is_interactive; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 	/* operatpr options */ | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | 	bool cut_through;    /* preference, can be modified at runtime (that feature may go) */ | 
					
						
							|  |  |  | 	bool only_select;    /* set on initialization */ | 
					
						
							|  |  |  | 	bool select_result;  /* set on initialization */ | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool is_ortho; | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | 	float ortho_extent; | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	float clipsta, clipend; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	enum { | 
					
						
							|  |  |  | 		MODE_IDLE, | 
					
						
							|  |  |  | 		MODE_DRAGGING, | 
					
						
							|  |  |  | 		MODE_CONNECT, | 
					
						
							| 
									
										
										
										
											2011-11-16 19:06:38 +00:00
										 |  |  | 		MODE_PANNING | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} mode; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	int prevmode; | 
					
						
							| 
									
										
										
										
											2013-11-08 18:01:07 +00:00
										 |  |  | 	bool snap_midpoints; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	bool ignore_edge_snapping; | 
					
						
							|  |  |  | 	bool ignore_vert_snapping; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	enum { | 
					
						
							|  |  |  | 		ANGLE_FREE, | 
					
						
							|  |  |  | 		ANGLE_0, | 
					
						
							|  |  |  | 		ANGLE_45, | 
					
						
							|  |  |  | 		ANGLE_90, | 
					
						
							|  |  |  | 		ANGLE_135 | 
					
						
							|  |  |  | 	} angle_snapping; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-18 04:24:18 +00:00
										 |  |  | 	const float (*cagecos)[3]; | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | } KnifeTool_OpData; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *knife_get_face_kedges(KnifeTool_OpData *kcd, BMFace *f); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | static void knife_input_ray_segment(KnifeTool_OpData *kcd, const float mval[2], const float ofs, | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  |                                     float r_origin[3], float r_dest[3]); | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static bool knife_verts_edge_in_face(KnifeVert *v1, KnifeVert *v2, BMFace *f); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_update_header(bContext *C, KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-12-22 14:11:10 +11:00
										 |  |  | #define HEADER_LENGTH 256
 | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 	char header[HEADER_LENGTH]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-02-19 15:45:56 +00:00
										 |  |  | 	BLI_snprintf(header, HEADER_LENGTH, IFACE_("LMB: define cut lines, Return/Spacebar: confirm, Esc or RMB: cancel, " | 
					
						
							|  |  |  | 	                                           "E: new cut, Ctrl: midpoint snap (%s), Shift: ignore snap (%s), " | 
					
						
							|  |  |  | 	                                           "C: angle constrain (%s), Z: cut through (%s)"), | 
					
						
							| 
									
										
										
										
											2013-10-13 00:32:31 +00:00
										 |  |  | 	             WM_bool_as_string(kcd->snap_midpoints), | 
					
						
							|  |  |  | 	             WM_bool_as_string(kcd->ignore_edge_snapping), | 
					
						
							|  |  |  | 	             WM_bool_as_string(kcd->angle_snapping), | 
					
						
							|  |  |  | 	             WM_bool_as_string(kcd->cut_through)); | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 	ED_area_headerprint(CTX_wm_area(C), header); | 
					
						
							| 
									
										
										
										
											2013-12-22 14:11:10 +11:00
										 |  |  | #undef HEADER_LENGTH
 | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | static void knife_project_v2(const KnifeTool_OpData *kcd, const float co[3], float sco[2]) | 
					
						
							| 
									
										
										
										
											2010-10-18 21:38:02 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	ED_view3d_project_float_v2_m4(kcd->ar, co, sco, (float (*)[4])kcd->projmat); | 
					
						
							| 
									
										
										
										
											2010-10-18 21:38:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | static void knife_pos_data_clear(KnifePosData *kpd) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	zero_v3(kpd->co); | 
					
						
							|  |  |  | 	zero_v3(kpd->cage); | 
					
						
							|  |  |  | 	kpd->vert = NULL; | 
					
						
							|  |  |  | 	kpd->edge = NULL; | 
					
						
							|  |  |  | 	kpd->bmface = NULL; | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	zero_v2(kpd->mval); | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *knife_empty_list(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-02-25 16:49:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 	ListBase *lst; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lst = BLI_memarena_alloc(kcd->arena, sizeof(ListBase)); | 
					
						
							| 
									
										
										
										
											2014-02-08 06:07:10 +11:00
										 |  |  | 	BLI_listbase_clear(lst); | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 	return lst; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_append_list(KnifeTool_OpData *kcd, ListBase *lst, void *elem) | 
					
						
							| 
									
										
										
										
											2012-02-25 16:49:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 	Ref *ref; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ref = BLI_mempool_calloc(kcd->refs); | 
					
						
							|  |  |  | 	ref->ref = elem; | 
					
						
							|  |  |  | 	BLI_addtail(lst, ref); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | static Ref *find_ref(ListBase *lb, void *ref) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Ref *ref1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ref1 = lb->first; ref1; ref1 = ref1->next) { | 
					
						
							|  |  |  | 		if (ref1->ref == ref) | 
					
						
							|  |  |  | 			return ref1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static void knife_append_list_no_dup(KnifeTool_OpData *kcd, ListBase *lst, void *elem) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!find_ref(lst, elem)) | 
					
						
							|  |  |  | 		knife_append_list(kcd, lst, elem); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static KnifeEdge *new_knife_edge(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	kcd->totkedge++; | 
					
						
							|  |  |  | 	return BLI_mempool_calloc(kcd->kedges); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_add_to_vert_edges(KnifeTool_OpData *kcd, KnifeEdge *kfe) | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 	knife_append_list(kcd, &kfe->v1->edges, kfe); | 
					
						
							|  |  |  | 	knife_append_list(kcd, &kfe->v2->edges, kfe); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | /* Add faces of an edge to a KnifeVert's faces list.  No checks for dups. */ | 
					
						
							|  |  |  | static void knife_add_edge_faces_to_vert(KnifeTool_OpData *kcd, KnifeVert *kfv, BMEdge *e) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMIter bmiter; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 08:21:40 +00:00
										 |  |  | 	BM_ITER_ELEM (f, &bmiter, e, BM_FACES_OF_EDGE) { | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 		knife_append_list(kcd, &kfv->faces, f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Find a face in common in the two faces lists.
 | 
					
						
							| 
									
										
										
										
											2012-09-03 22:04:14 +00:00
										 |  |  |  * If more than one, return the first; if none, return NULL */ | 
					
						
							| 
									
										
										
										
											2012-07-29 00:20:28 +00:00
										 |  |  | static BMFace *knife_find_common_face(ListBase *faces1, ListBase *faces2) | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	Ref *ref1, *ref2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (ref1 = faces1->first; ref1; ref1 = ref1->next) { | 
					
						
							|  |  |  | 		for (ref2 = faces2->first; ref2; ref2 = ref2->next) { | 
					
						
							|  |  |  | 			if (ref1->ref == ref2->ref) | 
					
						
							| 
									
										
										
										
											2012-07-29 00:20:28 +00:00
										 |  |  | 				return (BMFace *)(ref1->ref); | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-18 04:24:18 +00:00
										 |  |  | static KnifeVert *new_knife_vert(KnifeTool_OpData *kcd, const float co[3], const float cageco[3]) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	KnifeVert *kfv = BLI_mempool_calloc(kcd->kverts); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	kcd->totkvert++; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	copy_v3_v3(kfv->co, co); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	copy_v3_v3(kfv->cageco, cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	knife_project_v2(kcd, kfv->co, kfv->sco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return kfv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* get a KnifeVert wrapper for an existing BMVert */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static KnifeVert *get_bm_knife_vert(KnifeTool_OpData *kcd, BMVert *v) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	KnifeVert *kfv = BLI_ghash_lookup(kcd->origvertmap, v); | 
					
						
							| 
									
										
										
										
											2013-11-06 15:27:19 +00:00
										 |  |  | 	const float *cageco; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (!kfv) { | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 		BMIter bmiter; | 
					
						
							|  |  |  | 		BMFace *f; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-06 15:27:19 +00:00
										 |  |  | 		if (BM_elem_index_get(v) >= 0) | 
					
						
							|  |  |  | 			cageco = kcd->cagecos[BM_elem_index_get(v)]; | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			cageco = v->co; | 
					
						
							|  |  |  | 		kfv = new_knife_vert(kcd, v->co, cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		kfv->v = v; | 
					
						
							|  |  |  | 		BLI_ghash_insert(kcd->origvertmap, v, kfv); | 
					
						
							| 
									
										
										
										
											2013-08-17 08:21:40 +00:00
										 |  |  | 		BM_ITER_ELEM (f, &bmiter, v, BM_FACES_OF_VERT) { | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 			knife_append_list(kcd, &kfv->faces, f); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return kfv; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-07 12:54:32 +00:00
										 |  |  | /* get a KnifeEdge wrapper for an existing BMEdge */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static KnifeEdge *get_bm_knife_edge(KnifeTool_OpData *kcd, BMEdge *e) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	KnifeEdge *kfe = BLI_ghash_lookup(kcd->origedgemap, e); | 
					
						
							|  |  |  | 	if (!kfe) { | 
					
						
							| 
									
										
										
										
											2012-08-07 12:54:32 +00:00
										 |  |  | 		BMIter bmiter; | 
					
						
							|  |  |  | 		BMFace *f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		kfe = new_knife_edge(kcd); | 
					
						
							|  |  |  | 		kfe->e = e; | 
					
						
							|  |  |  | 		kfe->v1 = get_bm_knife_vert(kcd, e->v1); | 
					
						
							|  |  |  | 		kfe->v2 = get_bm_knife_vert(kcd, e->v2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		knife_add_to_vert_edges(kcd, kfe); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		BLI_ghash_insert(kcd->origedgemap, e, kfe); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 08:21:40 +00:00
										 |  |  | 		BM_ITER_ELEM (f, &bmiter, e, BM_FACES_OF_EDGE) { | 
					
						
							| 
									
										
										
										
											2012-08-07 12:54:32 +00:00
										 |  |  | 			knife_append_list(kcd, &kfe->faces, f); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return kfe; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* Record the index in kcd->em->looptris of first looptri triple for a given face,
 | 
					
						
							|  |  |  |  * given an index for some triple in that array. | 
					
						
							|  |  |  |  * This assumes that all of the triangles for a given face are contiguous | 
					
						
							|  |  |  |  * in that array (as they are by the current tesselation routines). | 
					
						
							|  |  |  |  * Actually store index + 1 in the hash, because 0 looks like "no entry" | 
					
						
							|  |  |  |  * to hash lookup routine; will reverse this in the get routine. | 
					
						
							|  |  |  |  * Doing this lazily rather than all at once for all faces. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void set_lowest_face_tri(KnifeTool_OpData *kcd, BMFace *f, int index) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (BLI_ghash_lookup(kcd->facetrimap, f)) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_assert(index >= 0 && index < kcd->em->tottri); | 
					
						
							|  |  |  | 	BLI_assert(kcd->em->looptris[index][0]->f == f); | 
					
						
							|  |  |  | 	for (i = index - 1; i >= 0; i--) { | 
					
						
							|  |  |  | 		if (kcd->em->looptris[i][0]->f != f) { | 
					
						
							|  |  |  | 			i++; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (i == -1) | 
					
						
							|  |  |  | 		i++; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_ghash_insert(kcd->facetrimap, f, SET_INT_IN_POINTER(i + 1)); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* This should only be called for faces that have had a lowest face tri set by previous function */ | 
					
						
							|  |  |  | static int get_lowest_face_tri(KnifeTool_OpData *kcd, BMFace *f) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int ans; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ans = GET_INT_FROM_POINTER(BLI_ghash_lookup(kcd->facetrimap, f)); | 
					
						
							|  |  |  | 	BLI_assert(ans != 0); | 
					
						
							|  |  |  | 	return ans - 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | /* User has just clicked for first time or first time after a restart (E key).
 | 
					
						
							|  |  |  |  * Copy the current position data into prev. */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_start_cut(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	kcd->prev = kcd->curr; | 
					
						
							|  |  |  | 	kcd->curr.is_space = 0; /*TODO: why do we do this? */ | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (kcd->prev.vert == NULL && kcd->prev.edge == NULL && is_zero_v3(kcd->prev.cage)) { | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		/* Make prevcage a point on the view ray to mouse closest to a point on model: choose vertex 0 */ | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 		float origin[3], origin_ofs[3]; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		BMVert *v0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 		knife_input_ray_segment(kcd, kcd->curr.mval, 1.0f, origin, origin_ofs); | 
					
						
							| 
									
										
										
										
											2013-10-27 10:01:35 +00:00
										 |  |  | 		v0 = BM_vert_at_index_find(kcd->em->bm, 0); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		if (v0) { | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 			closest_to_line_v3(kcd->prev.cage, v0->co, origin_ofs, origin); | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 			copy_v3_v3(kcd->prev.co, kcd->prev.cage); /*TODO: do we need this? */ | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 			copy_v3_v3(kcd->curr.cage, kcd->prev.cage); | 
					
						
							|  |  |  | 			copy_v3_v3(kcd->curr.co, kcd->prev.co); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *knife_get_face_kedges(KnifeTool_OpData *kcd, BMFace *f) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	ListBase *lst = BLI_ghash_lookup(kcd->kedgefacemap, f); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (!lst) { | 
					
						
							| 
									
										
										
										
											2012-08-07 12:54:32 +00:00
										 |  |  | 		BMIter bmiter; | 
					
						
							|  |  |  | 		BMEdge *e; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 		lst = knife_empty_list(kcd); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 08:21:40 +00:00
										 |  |  | 		BM_ITER_ELEM (e, &bmiter, f, BM_EDGES_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2012-08-07 12:54:32 +00:00
										 |  |  | 			knife_append_list(kcd, lst, get_bm_knife_edge(kcd, e)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		BLI_ghash_insert(kcd->kedgefacemap, f, lst); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return lst; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_edge_append_face(KnifeTool_OpData *kcd, KnifeEdge *kfe, BMFace *f) | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-13 14:45:17 +00:00
										 |  |  | 	knife_append_list(kcd, knife_get_face_kedges(kcd, f), kfe); | 
					
						
							|  |  |  | 	knife_append_list(kcd, &kfe->faces, f); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static KnifeVert *knife_split_edge(KnifeTool_OpData *kcd, KnifeEdge *kfe, float co[3], KnifeEdge **newkfe_out) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	KnifeEdge *newkfe = new_knife_edge(kcd); | 
					
						
							|  |  |  | 	Ref *ref; | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	float perc, cageco[3], l12; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	l12 = len_v3v3(kfe->v1->co, kfe->v2->co); | 
					
						
							| 
									
										
										
										
											2012-10-05 04:43:46 +00:00
										 |  |  | 	if (l12 < KNIFE_FLT_EPS) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		copy_v3_v3(cageco, kfe->v1->cageco); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		perc = len_v3v3(co, kfe->v1->co) / l12; | 
					
						
							|  |  |  | 		interp_v3_v3v3(cageco, kfe->v1->cageco, kfe->v2->cageco, perc); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	newkfe->v1 = kfe->v1; | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	newkfe->v2 = new_knife_vert(kcd, co, cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	newkfe->v2->draw = 1; | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 	if (kfe->e) { | 
					
						
							|  |  |  | 		knife_add_edge_faces_to_vert(kcd, newkfe->v2, kfe->e); | 
					
						
							| 
									
										
										
										
											2012-07-29 00:20:28 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 		/* kfe cuts across an existing face.
 | 
					
						
							| 
									
										
										
										
											2012-10-04 13:26:15 +00:00
										 |  |  | 		 * If v1 and v2 are in multiple faces together (e.g., if they | 
					
						
							|  |  |  | 		 * are in doubled polys) then this arbitrarily chooses one of them */ | 
					
						
							| 
									
										
										
										
											2012-07-27 20:12:29 +00:00
										 |  |  | 		f = knife_find_common_face(&kfe->v1->faces, &kfe->v2->faces); | 
					
						
							|  |  |  | 		if (f) | 
					
						
							|  |  |  | 			knife_append_list(kcd, &newkfe->v2->faces, f); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	newkfe->basef = kfe->basef; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	ref = find_ref(&kfe->v1->edges, kfe); | 
					
						
							|  |  |  | 	BLI_remlink(&kfe->v1->edges, ref); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	kfe->v1 = newkfe->v2; | 
					
						
							|  |  |  | 	BLI_addtail(&kfe->v1->edges, ref); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	for (ref = kfe->faces.first; ref; ref = ref->next) | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		knife_edge_append_face(kcd, newkfe, ref->ref); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 	knife_add_to_vert_edges(kcd, newkfe); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	newkfe->draw = kfe->draw; | 
					
						
							|  |  |  | 	newkfe->e = kfe->e; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	*newkfe_out = newkfe; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return newkfe->v2; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* primary key: lambda along cut
 | 
					
						
							|  |  |  |  * secondary key: lambda along depth | 
					
						
							|  |  |  |  * tertiary key: pointer comparisons of verts if both snapped to verts | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int linehit_compare(const void *vlh1, const void *vlh2) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	const KnifeLineHit *lh1 = vlh1; | 
					
						
							|  |  |  | 	const KnifeLineHit *lh2 = vlh2; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	if      (lh1->l < lh2->l) return -1; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	else if (lh1->l > lh2->l) return  1; | 
					
						
							| 
									
										
										
										
											2013-09-19 12:47:35 +00:00
										 |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if      (lh1->m < lh2->m) return -1; | 
					
						
							|  |  |  | 		else if (lh1->m > lh2->m) return  1; | 
					
						
							|  |  |  | 		else { | 
					
						
							|  |  |  | 			if      (lh1->v < lh2->v) return -1; | 
					
						
							|  |  |  | 			else if (lh1->v > lh2->v) return  1; | 
					
						
							|  |  |  | 			else return 0; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Sort linehits by distance along cut line, and secondarily from | 
					
						
							|  |  |  |  * front to back (from eye), and tertiarily by snap vertex, | 
					
						
							|  |  |  |  * and remove any duplicates. | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static void prepare_linehits_for_cut(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	KnifeLineHit *linehits, *lhi, *lhj; | 
					
						
							|  |  |  | 	int i, j, n; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	n = kcd->totlinehit; | 
					
						
							|  |  |  | 	linehits = kcd->linehits; | 
					
						
							|  |  |  | 	if (n == 0) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	qsort(linehits, n, sizeof(KnifeLineHit), linehit_compare); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Remove any edge hits that are preceded or followed
 | 
					
						
							|  |  |  | 	 * by a vertex hit that is very near. Mark such edge hits using | 
					
						
							|  |  |  | 	 * l == -1 and then do another pass to actually remove. | 
					
						
							|  |  |  | 	 * Also remove all but one of a series of vertex hits for the same vertex. */ | 
					
						
							|  |  |  | 	for (i = 0; i < n; i++) { | 
					
						
							|  |  |  | 		lhi = &linehits[i]; | 
					
						
							|  |  |  | 		if (lhi->v) { | 
					
						
							|  |  |  | 			for (j = i - 1; j >= 0; j--) { | 
					
						
							|  |  |  | 				lhj = &linehits[j]; | 
					
						
							|  |  |  | 				if (!lhj->kfe || | 
					
						
							|  |  |  | 				    fabsf(lhi->l - lhj->l) > KNIFE_FLT_EPSBIG || | 
					
						
							|  |  |  | 				    fabsf(lhi->m - lhj->m) > KNIFE_FLT_EPSBIG) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					break; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				lhj->l = -1.0f; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			for (j = i + 1; j < n; j++) { | 
					
						
							|  |  |  | 				lhj = &linehits[j]; | 
					
						
							|  |  |  | 				if (fabsf(lhi->l - lhj->l) > KNIFE_FLT_EPSBIG || | 
					
						
							|  |  |  | 				    fabsf(lhi->m - lhj->m) > KNIFE_FLT_EPSBIG) | 
					
						
							|  |  |  | 				{ | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 					break; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				if (lhj->kfe || lhi->v == lhj->v) { | 
					
						
							|  |  |  | 					lhj->l = -1.0f; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* delete-in-place loop: copying from pos j to pos i+1 */ | 
					
						
							|  |  |  | 	i = 0; | 
					
						
							|  |  |  | 	j = 1; | 
					
						
							|  |  |  | 	while (j < n) { | 
					
						
							|  |  |  | 		lhi = &linehits[i]; | 
					
						
							|  |  |  | 		lhj = &linehits[j]; | 
					
						
							|  |  |  | 		if (lhj->l == -1.0f) { | 
					
						
							|  |  |  | 			j++; /* skip copying this one */ | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		else { | 
					
						
							|  |  |  | 			/* copy unless a no-op */ | 
					
						
							|  |  |  | 			if (lhi->l == -1.0f) { | 
					
						
							|  |  |  | 				/* could happen if linehits[0] is being deleted */ | 
					
						
							|  |  |  | 				memcpy(&linehits[i], &linehits[j], sizeof(KnifeLineHit)); | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			else { | 
					
						
							|  |  |  | 				if (i + 1 != j) | 
					
						
							|  |  |  | 					memcpy(&linehits[i + 1], &linehits[j], sizeof(KnifeLineHit)); | 
					
						
							|  |  |  | 				i++; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			j++; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	kcd->totlinehit = i + 1; | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* Add hit to list of hits in facehits[f], where facehits is a map, if not already there */ | 
					
						
							|  |  |  | static void add_hit_to_facehits(KnifeTool_OpData *kcd, GHash *facehits, BMFace *f, KnifeLineHit *hit) | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	ListBase *lst = BLI_ghash_lookup(facehits, f); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (!lst) { | 
					
						
							|  |  |  | 		lst = knife_empty_list(kcd); | 
					
						
							|  |  |  | 		BLI_ghash_insert(facehits, f, lst); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	knife_append_list_no_dup(kcd, lst, hit); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static void knife_add_single_cut(KnifeTool_OpData *kcd, KnifeLineHit *lh1, KnifeLineHit *lh2, BMFace *f) | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	KnifeEdge *kfe, *kfe2; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if ((lh1->v && lh1->v == lh2->v) || | 
					
						
							|  |  |  | 	    (lh1->kfe && lh1->kfe == lh2->kfe)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2013-02-08 13:51:29 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* Check if edge actually lies within face (might not, if this face is concave) */ | 
					
						
							| 
									
										
										
										
											2014-03-06 10:55:12 -05:00
										 |  |  | 	if ((lh1->v && !lh1->kfe) && (lh2->v && !lh2->kfe)) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if (!knife_verts_edge_in_face(lh1->v, lh2->v, f)) { | 
					
						
							|  |  |  | 			return; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	kfe = new_knife_edge(kcd); | 
					
						
							|  |  |  | 	kfe->draw = true; | 
					
						
							|  |  |  | 	kfe->basef = f; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (lh1->v) { | 
					
						
							|  |  |  | 		kfe->v1 = lh1->v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (lh1->kfe) { | 
					
						
							|  |  |  | 		kfe->v1 = knife_split_edge(kcd, lh1->kfe, lh1->cagehit, &kfe2); | 
					
						
							|  |  |  | 		lh1->v = kfe->v1;  /* record the KnifeVert for this hit  */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		BLI_assert(lh1->f); | 
					
						
							|  |  |  | 		kfe->v1 = new_knife_vert(kcd, lh1->hit, lh1->cagehit); | 
					
						
							|  |  |  | 		kfe->v1->draw = true; | 
					
						
							|  |  |  | 		kfe->v1->is_face = true; | 
					
						
							|  |  |  | 		knife_append_list(kcd, &kfe->v1->faces, lh1->f); | 
					
						
							|  |  |  | 		lh1->v = kfe->v1;  /* record the KnifeVert for this hit */ | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (lh2->v) { | 
					
						
							|  |  |  | 		kfe->v2 = lh2->v; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else if (lh2->kfe) { | 
					
						
							|  |  |  | 		kfe->v2 = knife_split_edge(kcd, lh2->kfe, lh2->cagehit, &kfe2); | 
					
						
							|  |  |  | 		lh2->v = kfe->v2;  /* future uses of lh2 won't split again */ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		BLI_assert(lh2->f); | 
					
						
							|  |  |  | 		kfe->v2 = new_knife_vert(kcd, lh2->hit, lh2->cagehit); | 
					
						
							|  |  |  | 		kfe->v2->draw = true; | 
					
						
							|  |  |  | 		kfe->v2->is_face = true; | 
					
						
							|  |  |  | 		knife_append_list(kcd, &kfe->v2->faces, lh2->f); | 
					
						
							|  |  |  | 		lh2->v = kfe->v2;  /* record the KnifeVert for this hit */ | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	knife_add_to_vert_edges(kcd, kfe); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* TODO: check if this is ever needed */ | 
					
						
							|  |  |  | 	if (kfe->basef && !find_ref(&kfe->faces, kfe->basef)) | 
					
						
							|  |  |  | 		knife_edge_append_face(kcd, kfe, kfe->basef); | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* Given a list of KnifeLineHits for one face, sorted by l
 | 
					
						
							|  |  |  |  * and then by m, make the required KnifeVerts and | 
					
						
							|  |  |  |  * KnifeEdges. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void knife_cut_face(KnifeTool_OpData *kcd, BMFace *f, ListBase *hits) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	Ref *r; | 
					
						
							|  |  |  | 	KnifeLineHit *lh, *prevlh; | 
					
						
							|  |  |  | 	int n; | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	(void) kcd; | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	n = BLI_countlist(hits); | 
					
						
							|  |  |  | 	if (n < 2) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	prevlh = NULL; | 
					
						
							|  |  |  | 	for (r = hits->first; r; r = r->next) { | 
					
						
							|  |  |  | 		lh = (KnifeLineHit *)r->ref; | 
					
						
							|  |  |  | 		if (prevlh) | 
					
						
							|  |  |  | 			knife_add_single_cut(kcd, prevlh, lh, f); | 
					
						
							|  |  |  | 		prevlh = lh; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | /* User has just left-clicked after the first time.
 | 
					
						
							| 
									
										
										
										
											2012-09-03 14:37:34 +00:00
										 |  |  |  * Add all knife cuts implied by line from prev to curr. | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  |  * If that line crossed edges then kcd->linehits will be non-NULL. | 
					
						
							|  |  |  |  * Make all of the KnifeVerts and KnifeEdges implied by this cut. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_add_cut(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	KnifeLineHit *lh; | 
					
						
							|  |  |  | 	GHash *facehits; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 	Ref *r; | 
					
						
							|  |  |  | 	GHashIterator giter; | 
					
						
							|  |  |  | 	ListBase *lst; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	prepare_linehits_for_cut(kcd); | 
					
						
							|  |  |  | 	if (kcd->totlinehit == 0) { | 
					
						
							|  |  |  | 		kcd->prev = kcd->curr; | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* make facehits: map face -> list of linehits touching it */ | 
					
						
							|  |  |  | 	facehits = BLI_ghash_ptr_new("knife facehits"); | 
					
						
							|  |  |  | 	for (i = 0; i < kcd->totlinehit; i++) { | 
					
						
							|  |  |  | 		lh = &kcd->linehits[i]; | 
					
						
							|  |  |  | 		if (lh->f) { | 
					
						
							|  |  |  | 			add_hit_to_facehits(kcd, facehits, lh->f, lh); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if (lh->v) { | 
					
						
							|  |  |  | 			for (r = lh->v->faces.first; r; r = r->next) { | 
					
						
							|  |  |  | 				add_hit_to_facehits(kcd, facehits, r->ref, lh); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if (lh->kfe) { | 
					
						
							|  |  |  | 			for (r = lh->kfe->faces.first; r; r = r->next) { | 
					
						
							|  |  |  | 				add_hit_to_facehits(kcd, facehits, r->ref, lh); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-03-06 12:16:55 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* Note: as following loop progresses, the 'v' fields of
 | 
					
						
							|  |  |  | 	 * the linehits will be filled in (as edges are split or | 
					
						
							|  |  |  | 	 * in-face verts are made), so it may be true that both | 
					
						
							|  |  |  | 	 * the v and the kfe or f fields will be non-NULL. */ | 
					
						
							|  |  |  | 	GHASH_ITER (giter, facehits) { | 
					
						
							|  |  |  | 		f = (BMFace *)BLI_ghashIterator_getKey(&giter); | 
					
						
							|  |  |  | 		lst = (ListBase *)BLI_ghashIterator_getValue(&giter); | 
					
						
							|  |  |  | 		knife_cut_face(kcd, f, lst); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* set up for next cut */ | 
					
						
							|  |  |  | 	kcd->prev = kcd->curr; | 
					
						
							|  |  |  | 	if (kcd->prev.bmface) { | 
					
						
							|  |  |  | 		/* was "in face" but now we have a KnifeVert it is snapped to */ | 
					
						
							|  |  |  | 		kcd->prev.bmface = NULL; | 
					
						
							|  |  |  | 		kcd->prev.vert = kcd->linehits[kcd->totlinehit - 1].v; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BLI_ghash_free(facehits, NULL, NULL); | 
					
						
							|  |  |  | 	MEM_freeN(kcd->linehits); | 
					
						
							|  |  |  | 	kcd->linehits = NULL; | 
					
						
							|  |  |  | 	kcd->totlinehit = 0; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-08 18:01:05 +00:00
										 |  |  | static void knife_finish_cut(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-08 18:01:05 +00:00
										 |  |  | 	if (kcd->linehits) { | 
					
						
							|  |  |  | 		MEM_freeN(kcd->linehits); | 
					
						
							|  |  |  | 		kcd->linehits = NULL; | 
					
						
							|  |  |  | 		kcd->totlinehit = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | static void knifetool_draw_angle_snapping(const KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	bglMats mats; | 
					
						
							|  |  |  | 	double u[3], u1[2], u2[2], v1[3], v2[3], dx, dy; | 
					
						
							|  |  |  | 	double wminx, wminy, wmaxx, wmaxy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* make u the window coords of prevcage */ | 
					
						
							|  |  |  | 	view3d_get_transformation(kcd->ar, kcd->vc.rv3d, kcd->ob, &mats); | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	gluProject(kcd->prev.cage[0], kcd->prev.cage[1], kcd->prev.cage[2], | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	           mats.modelview, mats.projection, mats.viewport, | 
					
						
							|  |  |  | 	           &u[0], &u[1], &u[2]); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* make u1, u2 the points on window going through u at snap angle */ | 
					
						
							|  |  |  | 	wminx = kcd->ar->winrct.xmin; | 
					
						
							|  |  |  | 	wmaxx = kcd->ar->winrct.xmin + kcd->ar->winx; | 
					
						
							|  |  |  | 	wminy = kcd->ar->winrct.ymin; | 
					
						
							|  |  |  | 	wmaxy = kcd->ar->winrct.ymin + kcd->ar->winy; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (kcd->angle_snapping) { | 
					
						
							|  |  |  | 		case ANGLE_0: | 
					
						
							|  |  |  | 			u1[0] = wminx; | 
					
						
							|  |  |  | 			u2[0] = wmaxx; | 
					
						
							|  |  |  | 			u1[1] = u2[1] = u[1]; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case ANGLE_90: | 
					
						
							|  |  |  | 			u1[0] = u2[0] = u[0]; | 
					
						
							|  |  |  | 			u1[1] = wminy; | 
					
						
							|  |  |  | 			u2[1] = wmaxy; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case ANGLE_45: | 
					
						
							|  |  |  | 			/* clip against left or bottom */ | 
					
						
							|  |  |  | 			dx = u[0] - wminx; | 
					
						
							|  |  |  | 			dy = u[1] - wminy; | 
					
						
							|  |  |  | 			if (dy > dx) { | 
					
						
							|  |  |  | 				u1[0] = wminx; | 
					
						
							|  |  |  | 				u1[1] = u[1] - dx; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 				u1[0] = u[0] - dy; | 
					
						
							|  |  |  | 				u1[1] = wminy; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			/* clip against right or top */ | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 			dx = wmaxx - u[0]; | 
					
						
							|  |  |  | 			dy = wmaxy - u[1]; | 
					
						
							|  |  |  | 			if (dy > dx) { | 
					
						
							|  |  |  | 				u2[0] = wmaxx; | 
					
						
							|  |  |  | 				u2[1] = u[1] + dx; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 				u2[0] = u[0] + dy; | 
					
						
							|  |  |  | 				u2[1] = wmaxy; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		case ANGLE_135: | 
					
						
							|  |  |  | 			/* clip against right or bottom */ | 
					
						
							|  |  |  | 			dx = wmaxx - u[0]; | 
					
						
							|  |  |  | 			dy = u[1] - wminy; | 
					
						
							|  |  |  | 			if (dy > dx) { | 
					
						
							|  |  |  | 				u1[0] = wmaxx; | 
					
						
							|  |  |  | 				u1[1] = u[1] - dx; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 				u1[0] = u[0] + dy; | 
					
						
							|  |  |  | 				u1[1] = wminy; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			/* clip against left or top */ | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 			dx = u[0] - wminx; | 
					
						
							|  |  |  | 			dy = wmaxy - u[1]; | 
					
						
							|  |  |  | 			if (dy > dx) { | 
					
						
							|  |  |  | 				u2[0] = wminx; | 
					
						
							|  |  |  | 				u2[1] = u[1] + dx; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 				u2[0] = u[0] - dy; | 
					
						
							|  |  |  | 				u2[1] = wmaxy; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* unproject u1 and u2 back into object space */ | 
					
						
							|  |  |  | 	gluUnProject(u1[0], u1[1], 0.0, | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	             mats.modelview, mats.projection, mats.viewport, | 
					
						
							|  |  |  | 	             &v1[0], &v1[1], &v1[2]); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	gluUnProject(u2[0], u2[1], 0.0, | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	             mats.modelview, mats.projection, mats.viewport, | 
					
						
							|  |  |  | 	             &v2[0], &v2[1], &v2[2]); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 13:44:28 +00:00
										 |  |  | 	UI_ThemeColor(TH_TRANSFORM); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	glLineWidth(2.0); | 
					
						
							|  |  |  | 	glBegin(GL_LINES); | 
					
						
							|  |  |  | 	glVertex3dv(v1); | 
					
						
							|  |  |  | 	glVertex3dv(v2); | 
					
						
							|  |  |  | 	glEnd(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | static void knife_init_colors(KnifeColors *colors) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	/* possible BMESH_TODO: add explicit themes or calculate these by
 | 
					
						
							| 
									
										
										
										
											2012-05-20 21:23:26 +00:00
										 |  |  | 	 * figuring out contrasting colors with grid / edges / verts | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 	 * a la UI_make_axis_color */ | 
					
						
							|  |  |  | 	UI_GetThemeColor3ubv(TH_NURB_VLINE, colors->line); | 
					
						
							|  |  |  | 	UI_GetThemeColor3ubv(TH_NURB_ULINE, colors->edge); | 
					
						
							|  |  |  | 	UI_GetThemeColor3ubv(TH_HANDLE_SEL_VECT, colors->curpoint); | 
					
						
							|  |  |  | 	UI_GetThemeColor3ubv(TH_HANDLE_SEL_VECT, colors->curpoint_a); | 
					
						
							| 
									
										
										
										
											2012-04-20 13:45:38 +00:00
										 |  |  | 	colors->curpoint_a[3] = 102; | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 	UI_GetThemeColor3ubv(TH_ACTIVE_SPLINE, colors->point); | 
					
						
							|  |  |  | 	UI_GetThemeColor3ubv(TH_ACTIVE_SPLINE, colors->point_a); | 
					
						
							| 
									
										
										
										
											2012-04-20 13:45:38 +00:00
										 |  |  | 	colors->point_a[3] = 102; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:44:28 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | /* modal loop selection drawing callback */ | 
					
						
							| 
									
										
										
										
											2012-04-17 17:25:10 +00:00
										 |  |  | static void knifetool_draw(const bContext *C, ARegion *UNUSED(ar), void *arg) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-04-17 17:25:10 +00:00
										 |  |  | 	View3D *v3d = CTX_wm_view3d(C); | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | 	const KnifeTool_OpData *kcd = arg; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:26:16 +00:00
										 |  |  | 	if (v3d->zbuf) glDisable(GL_DEPTH_TEST); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	glPolygonOffset(1.0f, 1.0f); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	glPushMatrix(); | 
					
						
							|  |  |  | 	glMultMatrixf(kcd->ob->obmat); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (kcd->mode == MODE_DRAGGING) { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		if (kcd->angle_snapping != ANGLE_FREE) | 
					
						
							|  |  |  | 			knifetool_draw_angle_snapping(kcd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor3ubv(kcd->colors.line); | 
					
						
							| 
									
										
										
										
											2012-04-19 13:44:28 +00:00
										 |  |  | 		 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glLineWidth(2.0); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_LINES); | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 		glVertex3fv(kcd->prev.cage); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 		glVertex3fv(kcd->curr.cage); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glEnd(); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		glLineWidth(1.0); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (kcd->prev.vert) { | 
					
						
							|  |  |  | 		glColor3ubv(kcd->colors.point); | 
					
						
							|  |  |  | 		glPointSize(11); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		glBegin(GL_POINTS); | 
					
						
							|  |  |  | 		glVertex3fv(kcd->prev.cage); | 
					
						
							|  |  |  | 		glEnd(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kcd->prev.bmface) { | 
					
						
							|  |  |  | 		glColor3ubv(kcd->colors.curpoint); | 
					
						
							|  |  |  | 		glPointSize(9); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		glBegin(GL_POINTS); | 
					
						
							|  |  |  | 		glVertex3fv(kcd->prev.cage); | 
					
						
							|  |  |  | 		glEnd(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	if (kcd->curr.edge) { | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor3ubv(kcd->colors.edge); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glLineWidth(2.0); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_LINES); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 		glVertex3fv(kcd->curr.edge->v1->cageco); | 
					
						
							|  |  |  | 		glVertex3fv(kcd->curr.edge->v2->cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glEnd(); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glLineWidth(1.0); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	else if (kcd->curr.vert) { | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor3ubv(kcd->colors.point); | 
					
						
							| 
									
										
										
										
											2011-04-13 03:56:14 +00:00
										 |  |  | 		glPointSize(11); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_POINTS); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 		glVertex3fv(kcd->curr.cage); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glEnd(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	if (kcd->curr.bmface) { | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor3ubv(kcd->colors.curpoint); | 
					
						
							| 
									
										
										
										
											2011-04-13 03:56:14 +00:00
										 |  |  | 		glPointSize(9); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_POINTS); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 		glVertex3fv(kcd->curr.cage); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glEnd(); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (kcd->totlinehit > 0) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		KnifeLineHit *lh; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		int i; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glEnable(GL_BLEND); | 
					
						
							|  |  |  | 		glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		/* draw any snapped verts first */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor4ubv(kcd->colors.point_a); | 
					
						
							| 
									
										
										
										
											2011-04-13 03:56:14 +00:00
										 |  |  | 		glPointSize(11); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_POINTS); | 
					
						
							|  |  |  | 		lh = kcd->linehits; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (i = 0; i < kcd->totlinehit; i++, lh++) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			if (lh->v) | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 				glVertex3fv(lh->cagehit); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		glEnd(); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		/* now draw the rest */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 		glColor4ubv(kcd->colors.curpoint_a); | 
					
						
							| 
									
										
										
										
											2011-04-13 03:56:14 +00:00
										 |  |  | 		glPointSize(7); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_POINTS); | 
					
						
							|  |  |  | 		lh = kcd->linehits; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (i = 0; i < kcd->totlinehit; i++, lh++) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			if (!lh->v) | 
					
						
							|  |  |  | 				glVertex3fv(lh->cagehit); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		glEnd(); | 
					
						
							|  |  |  | 		glDisable(GL_BLEND); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (kcd->totkedge > 0) { | 
					
						
							|  |  |  | 		BLI_mempool_iter iter; | 
					
						
							|  |  |  | 		KnifeEdge *kfe; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glLineWidth(1.0); | 
					
						
							|  |  |  | 		glBegin(GL_LINES); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BLI_mempool_iternew(kcd->kedges, &iter); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (kfe = BLI_mempool_iterstep(&iter); kfe; kfe = BLI_mempool_iterstep(&iter)) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 			if (!kfe->draw) | 
					
						
							|  |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 			glColor3ubv(kcd->colors.line); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 			glVertex3fv(kfe->v1->cageco); | 
					
						
							|  |  |  | 			glVertex3fv(kfe->v2->cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		glEnd(); | 
					
						
							|  |  |  | 		glLineWidth(1.0); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kcd->totkvert > 0) { | 
					
						
							|  |  |  | 		BLI_mempool_iter iter; | 
					
						
							|  |  |  | 		KnifeVert *kfv; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-13 03:56:14 +00:00
										 |  |  | 		glPointSize(5.0); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		glBegin(GL_POINTS); | 
					
						
							|  |  |  | 		BLI_mempool_iternew(kcd->kverts, &iter); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (kfv = BLI_mempool_iterstep(&iter); kfv; kfv = BLI_mempool_iterstep(&iter)) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 			if (!kfv->draw) | 
					
						
							|  |  |  | 				continue; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 			glColor3ubv(kcd->colors.point); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 			glVertex3fv(kfv->cageco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		glEnd(); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	glPopMatrix(); | 
					
						
							| 
									
										
										
										
											2012-04-17 17:25:10 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:26:16 +00:00
										 |  |  | 	if (v3d->zbuf) glEnable(GL_DEPTH_TEST); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* Find intersection of v1-v2 with face f.
 | 
					
						
							|  |  |  |  * Only take intersections that are at least face_tol (in screen space) away | 
					
						
							|  |  |  |  * from other intersection elements. | 
					
						
							|  |  |  |  * If v1-v2 is coplanar with f, call that "no intersection though | 
					
						
							|  |  |  |  * it really means "infinite number of intersections". | 
					
						
							|  |  |  |  * In such a case we should have gotten hits on edges or verts of the face. */ | 
					
						
							|  |  |  | static bool knife_ray_intersect_face(KnifeTool_OpData *kcd, | 
					
						
							|  |  |  |                                      const float s[2], | 
					
						
							| 
									
										
										
										
											2013-12-03 09:10:03 +11:00
										 |  |  |                                      const float v1[3], const float v2[3], | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  |                                      BMFace *f, | 
					
						
							|  |  |  |                                      const float face_tol, | 
					
						
							|  |  |  |                                      float intersectp[3]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int tottri, tri_i; | 
					
						
							|  |  |  | 	float lv1[3], lv2[3], lv3[3], raydir[3]; | 
					
						
							|  |  |  | 	float tri_norm[3], tri_plane[4]; | 
					
						
							|  |  |  | 	float se1[2], se2[2]; | 
					
						
							|  |  |  | 	float d, lambda; | 
					
						
							|  |  |  | 	BMLoop **tri; | 
					
						
							|  |  |  | 	ListBase *lst; | 
					
						
							|  |  |  | 	Ref *ref; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	sub_v3_v3v3(raydir, v2, v1); | 
					
						
							|  |  |  | 	normalize_v3(raydir); | 
					
						
							|  |  |  | 	tri_i = get_lowest_face_tri(kcd, f); | 
					
						
							|  |  |  | 	tottri = kcd->em->tottri; | 
					
						
							|  |  |  | 	BLI_assert(tri_i >= 0 && tri_i < tottri); | 
					
						
							| 
									
										
										
										
											2012-08-06 13:37:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	for (; tri_i < tottri; tri_i++) { | 
					
						
							|  |  |  | 		tri = kcd->em->looptris[tri_i]; | 
					
						
							|  |  |  | 		if (tri[0]->f != f) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		copy_v3_v3(lv1, kcd->cagecos[BM_elem_index_get(tri[0]->v)]); | 
					
						
							|  |  |  | 		copy_v3_v3(lv2, kcd->cagecos[BM_elem_index_get(tri[1]->v)]); | 
					
						
							|  |  |  | 		copy_v3_v3(lv3, kcd->cagecos[BM_elem_index_get(tri[2]->v)]); | 
					
						
							|  |  |  | 		/* using epsilon test in case ray is directly through an internal
 | 
					
						
							|  |  |  | 		 * tesselation edge and might not hit either tesselation tri with | 
					
						
							|  |  |  | 		 * an exact test; | 
					
						
							|  |  |  | 		 * we will exclude hits near real edges by a later test */ | 
					
						
							|  |  |  | 		if (isect_ray_tri_epsilon_v3(v1, raydir, lv1, lv2, lv3, &lambda, NULL, KNIFE_FLT_EPS)) { | 
					
						
							|  |  |  | 			/* check if line coplanar with tri */ | 
					
						
							|  |  |  | 			normal_tri_v3(tri_norm, lv1, lv2, lv3); | 
					
						
							|  |  |  | 			plane_from_point_normal_v3(tri_plane, lv1, tri_norm); | 
					
						
							|  |  |  | 			if ((fabsf(dist_squared_to_plane_v3(v1, tri_plane)) < KNIFE_FLT_EPS) && | 
					
						
							|  |  |  | 			    (fabsf(dist_squared_to_plane_v3(v2, tri_plane)) < KNIFE_FLT_EPS)) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				return false; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			copy_v3_v3(intersectp, v1); | 
					
						
							|  |  |  | 			madd_v3_v3fl(intersectp, raydir, lambda); | 
					
						
							|  |  |  | 			/* Now check that far enough away from verts and edges */ | 
					
						
							|  |  |  | 			lst = knife_get_face_kedges(kcd, f); | 
					
						
							|  |  |  | 			for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							|  |  |  | 				kfe = ref->ref; | 
					
						
							|  |  |  | 				knife_project_v2(kcd, kfe->v1->cageco, se1); | 
					
						
							|  |  |  | 				knife_project_v2(kcd, kfe->v2->cageco, se2); | 
					
						
							|  |  |  | 				d = dist_to_line_segment_v2(s, se1, se2); | 
					
						
							|  |  |  | 				if (d < face_tol) { | 
					
						
							|  |  |  | 					return false; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2010-10-18 21:38:02 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-04 15:06:34 +00:00
										 |  |  | /* Calculate maximum excursion from (0,0,0) of mesh */ | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | static void calc_ortho_extent(KnifeTool_OpData *kcd) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	BMVert *v; | 
					
						
							| 
									
										
										
										
											2013-01-09 03:30:15 +00:00
										 |  |  | 	BMesh *bm = kcd->em->bm; | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | 	float max_xyz = 0.0f; | 
					
						
							|  |  |  | 	int i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-17 08:21:40 +00:00
										 |  |  | 	BM_ITER_MESH (v, &iter, bm, BM_VERTS_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | 		for (i = 0; i < 3; i++) | 
					
						
							| 
									
										
										
										
											2014-03-01 14:20:54 +11:00
										 |  |  | 			max_xyz = max_ff(max_xyz, fabsf(v->co[i])); | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-04 15:06:34 +00:00
										 |  |  | 	kcd->ortho_extent = max_xyz; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | /* Check if p is visible (not clipped, not occluded by another face).
 | 
					
						
							|  |  |  |  * s in screen projection of p. */ | 
					
						
							|  |  |  | static bool point_is_visible(KnifeTool_OpData *kcd, const float p[3], const float s[2], bglMats *mats) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	float p1[3], no[3], view[3]; | 
					
						
							|  |  |  | 	BMFace *f_hit; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If not cutting through, make sure no face is in front of p */ | 
					
						
							|  |  |  | 	if (!kcd->cut_through) { | 
					
						
							|  |  |  | 		/* TODO: I think there's a simpler way to get the required raycast ray */ | 
					
						
							|  |  |  | 		ED_view3d_unproject(mats, view, s[0], s[1], 0.0f); | 
					
						
							|  |  |  | 		mul_m4_v3(kcd->ob->imat, view); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* make p1 a little towards view, so ray doesn't hit p's face. */ | 
					
						
							|  |  |  | 		copy_v3_v3(p1, p); | 
					
						
							|  |  |  | 		sub_v3_v3(view, p1); | 
					
						
							|  |  |  | 		normalize_v3(view); | 
					
						
							|  |  |  | 		copy_v3_v3(no, view); | 
					
						
							|  |  |  | 		mul_v3_fl(no, 3.0f * KNIFE_FLT_EPSBIG); | 
					
						
							|  |  |  | 		add_v3_v3(p1, no); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* see if there's a face hit between p1 and the view */ | 
					
						
							|  |  |  | 		f_hit = BKE_bmbvh_ray_cast(kcd->bmbvh, p1, no, KNIFE_FLT_EPS, NULL, NULL, NULL); | 
					
						
							|  |  |  | 		if (f_hit) | 
					
						
							|  |  |  | 			return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If box clipping on, make sure p is not clipped */ | 
					
						
							|  |  |  | 	if (kcd->vc.rv3d->rflag & RV3D_CLIPPING && | 
					
						
							|  |  |  | 	    ED_view3d_clipping_test(kcd->vc.rv3d, p, true)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-04 15:06:34 +00:00
										 |  |  | /* Clip the line (v1, v2) to planes perpendicular to it and distances d from
 | 
					
						
							|  |  |  |  * the closest point on the line to the origin */ | 
					
						
							| 
									
										
										
										
											2013-01-04 17:24:40 +00:00
										 |  |  | static void clip_to_ortho_planes(float v1[3], float v2[3], float d) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-01-04 15:06:34 +00:00
										 |  |  | 	float closest[3]; | 
					
						
							|  |  |  | 	const float origin[3] = {0.0f, 0.0f, 0.0f}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	closest_to_line_v3(closest, origin, v1, v2); | 
					
						
							|  |  |  | 	dist_ensure_v3_v3fl(v1, closest, d); | 
					
						
							|  |  |  | 	dist_ensure_v3_v3fl(v2, closest, d); | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static void set_linehit_depth(KnifeTool_OpData *kcd, KnifeLineHit *lh) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	float vnear[3], vfar[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ED_view3d_win_to_segment(kcd->ar, kcd->vc.v3d, lh->schit, vnear, vfar, true); | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, vnear); | 
					
						
							|  |  |  | 	if (kcd->is_ortho) { | 
					
						
							|  |  |  | 		if (kcd->ortho_extent == 0.0f) | 
					
						
							|  |  |  | 			calc_ortho_extent(kcd); | 
					
						
							|  |  |  | 		clip_to_ortho_planes(vnear, vfar, kcd->ortho_extent + 10.0f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	lh->m = len_v3v3(vnear, lh->cagehit); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | /* Finds visible (or all, if cutting through) edges that intersects the current screen drag line */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_find_line_hits(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	bglMats mats; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	SmallHash faces, kfes, kfvs; | 
					
						
							|  |  |  | 	float v1[3], v2[3], v3[3], v4[3], s1[2], s2[2]; | 
					
						
							|  |  |  | 	BVHTree *planetree, *tree; | 
					
						
							|  |  |  | 	BVHTreeOverlap *results, *result; | 
					
						
							|  |  |  | 	BMLoop **ls; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	KnifeVert *v; | 
					
						
							|  |  |  | 	ListBase *lst; | 
					
						
							|  |  |  | 	Ref *ref; | 
					
						
							|  |  |  | 	KnifeLineHit *linehits = NULL; | 
					
						
							|  |  |  | 	BLI_array_declare(linehits); | 
					
						
							|  |  |  | 	SmallHashIter hiter; | 
					
						
							|  |  |  | 	KnifeLineHit hit; | 
					
						
							|  |  |  | 	void *val; | 
					
						
							|  |  |  | 	float plane_cos[12]; | 
					
						
							|  |  |  | 	float s[2], se1[2], se2[2], sint[2]; | 
					
						
							|  |  |  | 	float p[3], p2[3], r1[3], r2[3]; | 
					
						
							|  |  |  | 	float d, d1, d2, lambda; | 
					
						
							|  |  |  | 	float vert_tol, vert_tol_sq, line_tol, face_tol; | 
					
						
							|  |  |  | 	int isect_kind; | 
					
						
							|  |  |  | 	unsigned int tot; | 
					
						
							|  |  |  | 	int i; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	bgl_get_mats(&mats); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (kcd->linehits) { | 
					
						
							|  |  |  | 		MEM_freeN(kcd->linehits); | 
					
						
							|  |  |  | 		kcd->linehits = NULL; | 
					
						
							|  |  |  | 		kcd->totlinehit = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	copy_v3_v3(v1, kcd->prev.cage); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	copy_v3_v3(v2, kcd->curr.cage); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* project screen line's 3d coordinates back into 2d */ | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	knife_project_v2(kcd, v1, s1); | 
					
						
							|  |  |  | 	knife_project_v2(kcd, v2, s2); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-01 15:52:29 +00:00
										 |  |  | 	if (kcd->is_interactive) { | 
					
						
							|  |  |  | 		if (len_squared_v2v2(s1, s2) < 1.0f) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		if (len_squared_v2v2(s1, s2) < KNIFE_FLT_EPS_SQUARED) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* unproject screen line */ | 
					
						
							| 
									
										
										
										
											2013-04-22 20:00:37 +00:00
										 |  |  | 	ED_view3d_win_to_segment(kcd->ar, kcd->vc.v3d, s1, v1, v3, true); | 
					
						
							|  |  |  | 	ED_view3d_win_to_segment(kcd->ar, kcd->vc.v3d, s2, v2, v4, true); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	mul_m4_v3(kcd->ob->imat, v1); | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, v2); | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, v3); | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, v4); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 01:11:08 +00:00
										 |  |  | 	/* numeric error, 'v1' -> 'v2', 'v2' -> 'v4' can end up being ~2000 units apart in otho mode
 | 
					
						
							|  |  |  | 	 * (from ED_view3d_win_to_segment_clip() above) | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	 * this gives precision error; rather then solving properly | 
					
						
							| 
									
										
										
										
											2012-03-13 01:11:08 +00:00
										 |  |  | 	 * (which may involve using doubles everywhere!), | 
					
						
							|  |  |  | 	 * limit the distance between these points */ | 
					
						
							|  |  |  | 	if (kcd->is_ortho) { | 
					
						
							| 
									
										
										
										
											2012-10-23 18:17:51 +00:00
										 |  |  | 		if (kcd->ortho_extent == 0.0f) | 
					
						
							|  |  |  | 			calc_ortho_extent(kcd); | 
					
						
							| 
									
										
										
										
											2013-01-04 15:06:34 +00:00
										 |  |  | 		clip_to_ortho_planes(v1, v3, kcd->ortho_extent + 10.0f); | 
					
						
							|  |  |  | 		clip_to_ortho_planes(v2, v4, kcd->ortho_extent + 10.0f); | 
					
						
							| 
									
										
										
										
											2012-03-13 01:11:08 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* First use bvh tree to find faces, knife edges, and knife verts that might
 | 
					
						
							|  |  |  | 	 * intersect the cut plane with rays v1-v3 and v2-v4. | 
					
						
							|  |  |  | 	 * This deduplicates the candidates before doing more expensive intersection tests. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	tree = BKE_bmbvh_tree_get(kcd->bmbvh); | 
					
						
							|  |  |  | 	planetree = BLI_bvhtree_new(4, FLT_EPSILON * 4, 8, 8); | 
					
						
							|  |  |  | 	copy_v3_v3(plane_cos + 0, v1); | 
					
						
							|  |  |  | 	copy_v3_v3(plane_cos + 3, v2); | 
					
						
							|  |  |  | 	copy_v3_v3(plane_cos + 6, v3); | 
					
						
							|  |  |  | 	copy_v3_v3(plane_cos + 9, v4); | 
					
						
							|  |  |  | 	BLI_bvhtree_insert(planetree, 0, plane_cos, 4); | 
					
						
							|  |  |  | 	BLI_bvhtree_balance(planetree); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	results = BLI_bvhtree_overlap(tree, planetree, &tot); | 
					
						
							|  |  |  | 	if (!results) { | 
					
						
							|  |  |  | 		BLI_bvhtree_free(planetree); | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-02 17:08:26 +11:00
										 |  |  | 	BLI_smallhash_init(&faces); | 
					
						
							|  |  |  | 	BLI_smallhash_init(&kfes); | 
					
						
							|  |  |  | 	BLI_smallhash_init(&kfvs); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	for (i = 0, result = results; i < tot; i++, result++) { | 
					
						
							|  |  |  | 		ls = (BMLoop **)kcd->em->looptris[result->indexA]; | 
					
						
							|  |  |  | 		f = ls[0]->f; | 
					
						
							|  |  |  | 		set_lowest_face_tri(kcd, f, result->indexA); | 
					
						
							|  |  |  | 		/* for faces, store index of lowest hit looptri in hash */ | 
					
						
							|  |  |  | 		if (BLI_smallhash_haskey(&faces, (uintptr_t)f)) { | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		/* don't care what the value is except that it is non-NULL, for iterator */ | 
					
						
							|  |  |  | 		BLI_smallhash_insert(&faces, (uintptr_t)f, f); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		lst = knife_get_face_kedges(kcd, f); | 
					
						
							|  |  |  | 		for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							|  |  |  | 			kfe = ref->ref; | 
					
						
							|  |  |  | 			if (BLI_smallhash_haskey(&kfes, (uintptr_t)kfe)) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			BLI_smallhash_insert(&kfes, (uintptr_t)kfe, kfe); | 
					
						
							|  |  |  | 			v = kfe->v1; | 
					
						
							|  |  |  | 			if (!BLI_smallhash_haskey(&kfvs, (uintptr_t)v)) | 
					
						
							|  |  |  | 				BLI_smallhash_insert(&kfvs, (uintptr_t)v, v); | 
					
						
							|  |  |  | 			v = kfe->v2; | 
					
						
							|  |  |  | 			if (!BLI_smallhash_haskey(&kfvs, (uintptr_t)v)) | 
					
						
							|  |  |  | 				BLI_smallhash_insert(&kfvs, (uintptr_t)v, v); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Now go through the candidates and find intersections */ | 
					
						
							|  |  |  | 	/* These tolerances, in screen space, are for intermediate hits, as ends are already snapped to screen */ | 
					
						
							|  |  |  | 	vert_tol = KNIFE_FLT_EPS * 2000.0f; | 
					
						
							|  |  |  | 	line_tol = KNIFE_FLT_EPS * 2000.0f; | 
					
						
							|  |  |  | 	vert_tol_sq = vert_tol * vert_tol; | 
					
						
							|  |  |  | 	face_tol = max_ff(vert_tol, line_tol); | 
					
						
							|  |  |  | 	/* Assume these tolerances swamp floating point rounding errors in calculations below */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* first look for vertex hits */ | 
					
						
							|  |  |  | 	for (val = BLI_smallhash_iternew(&kfvs, &hiter, (uintptr_t *)&v); val; | 
					
						
							|  |  |  | 	     val = BLI_smallhash_iternext(&hiter, (uintptr_t *)&v)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		knife_project_v2(kcd, v->cageco, s); | 
					
						
							|  |  |  | 		d = dist_squared_to_line_segment_v2(s, s1, s2); | 
					
						
							|  |  |  | 		if (d <= vert_tol_sq) { | 
					
						
							|  |  |  | 			if (point_is_visible(kcd, v->cageco, s, &mats)) { | 
					
						
							|  |  |  | 				memset(&hit, 0, sizeof(hit)); | 
					
						
							|  |  |  | 				hit.v = v; | 
					
						
							|  |  |  | 				copy_v3_v3(hit.hit, v->cageco); | 
					
						
							|  |  |  | 				copy_v3_v3(hit.cagehit, v->cageco); | 
					
						
							|  |  |  | 				copy_v2_v2(hit.schit, s); | 
					
						
							|  |  |  | 				set_linehit_depth(kcd, &hit); | 
					
						
							|  |  |  | 				BLI_array_append(linehits, hit); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* now edge hits; don't add if a vertex at end of edge should have hit */ | 
					
						
							|  |  |  | 	for (val = BLI_smallhash_iternew(&kfes, &hiter, (uintptr_t *)&kfe); val; | 
					
						
							|  |  |  | 	     val = BLI_smallhash_iternext(&hiter, (uintptr_t *)&kfe)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		knife_project_v2(kcd, kfe->v1->cageco, se1); | 
					
						
							|  |  |  | 		knife_project_v2(kcd, kfe->v2->cageco, se2); | 
					
						
							|  |  |  | 		isect_kind = isect_seg_seg_v2_point(s1, s2, se1, se2, sint); | 
					
						
							|  |  |  | 		if (isect_kind == -1) { | 
					
						
							|  |  |  | 			/* isect_seg_seg_v2 doesn't do tolerance test around ends of s1-s2 */ | 
					
						
							|  |  |  | 			closest_to_line_segment_v2(sint, s1, se1, se2); | 
					
						
							|  |  |  | 			if (len_squared_v2v2(sint, s1) <= vert_tol_sq) | 
					
						
							|  |  |  | 				isect_kind = 1; | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				closest_to_line_segment_v2(sint, s2, se1, se2); | 
					
						
							|  |  |  | 				if (len_squared_v2v2(sint, s2) <= vert_tol_sq) | 
					
						
							|  |  |  | 					isect_kind = 1; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (isect_kind == 1) { | 
					
						
							|  |  |  | 			d1 = len_v2v2(sint, se1); | 
					
						
							|  |  |  | 			d2 = len_v2v2(se2, se1); | 
					
						
							|  |  |  | 			if (!(d1 <= vert_tol || d2 <= vert_tol || fabsf(d1 - d2) <= vert_tol)) { | 
					
						
							|  |  |  | 				lambda = d1 / d2; | 
					
						
							|  |  |  | 				/* Can't just interpolate between ends of kfe because
 | 
					
						
							|  |  |  | 				* that doesn't work with perspective transformation. | 
					
						
							|  |  |  | 				* Need to find 3d intersection of ray through sint */ | 
					
						
							|  |  |  | 				knife_input_ray_segment(kcd, sint, 1.0f, r1, r2); | 
					
						
							|  |  |  | 				isect_kind = isect_line_line_v3(kfe->v1->cageco, kfe->v2->cageco, r1, r2, p, p2); | 
					
						
							|  |  |  | 				if (isect_kind >= 1 && point_is_visible(kcd, p, sint, &mats)) { | 
					
						
							|  |  |  | 					memset(&hit, 0, sizeof(hit)); | 
					
						
							|  |  |  | 					hit.kfe = kfe; | 
					
						
							|  |  |  | 					copy_v3_v3(hit.hit, p); | 
					
						
							|  |  |  | 					copy_v3_v3(hit.cagehit, p); | 
					
						
							|  |  |  | 					copy_v2_v2(hit.schit, sint); | 
					
						
							|  |  |  | 					hit.perc = lambda; | 
					
						
							|  |  |  | 					set_linehit_depth(kcd, &hit); | 
					
						
							|  |  |  | 					BLI_array_append(linehits, hit); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	/* now face hits; don't add if a vertex or edge in face should have hit */ | 
					
						
							|  |  |  | 	for (val = BLI_smallhash_iternew(&faces, &hiter, (uintptr_t *)&f); val; | 
					
						
							|  |  |  | 	     val = BLI_smallhash_iternext(&hiter, (uintptr_t *)&f)) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (knife_ray_intersect_face(kcd, s1, v1, v3, f, face_tol, p)) { | 
					
						
							|  |  |  | 			if (point_is_visible(kcd, p, s1, &mats)) { | 
					
						
							|  |  |  | 				memset(&hit, 0, sizeof(hit)); | 
					
						
							|  |  |  | 				hit.f = f; | 
					
						
							|  |  |  | 				copy_v3_v3(hit.hit, p); | 
					
						
							|  |  |  | 				copy_v3_v3(hit.cagehit, p); | 
					
						
							|  |  |  | 				copy_v2_v2(hit.schit, s1); | 
					
						
							|  |  |  | 				set_linehit_depth(kcd, &hit); | 
					
						
							|  |  |  | 				BLI_array_append(linehits, hit); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (knife_ray_intersect_face(kcd, s2, v2, v4, f, face_tol, p)) { | 
					
						
							|  |  |  | 			if (point_is_visible(kcd, p, s2, &mats)) { | 
					
						
							|  |  |  | 				memset(&hit, 0, sizeof(hit)); | 
					
						
							|  |  |  | 				hit.f = f; | 
					
						
							|  |  |  | 				copy_v3_v3(hit.hit, p); | 
					
						
							|  |  |  | 				copy_v3_v3(hit.cagehit, p); | 
					
						
							|  |  |  | 				copy_v2_v2(hit.schit, s2); | 
					
						
							|  |  |  | 				set_linehit_depth(kcd, &hit); | 
					
						
							|  |  |  | 				BLI_array_append(linehits, hit); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	kcd->linehits = linehits; | 
					
						
							|  |  |  | 	kcd->totlinehit = BLI_array_count(linehits); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* find position along screen line, used for sorting */ | 
					
						
							|  |  |  | 	for (i = 0; i < kcd->totlinehit; i++) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		KnifeLineHit *lh = kcd->linehits + i; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 		lh->l = len_v2v2(lh->schit, s1) / len_v2v2(s2, s1); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	BLI_smallhash_release(&faces); | 
					
						
							|  |  |  | 	BLI_smallhash_release(&kfes); | 
					
						
							|  |  |  | 	BLI_smallhash_release(&kfvs); | 
					
						
							|  |  |  | 	BLI_bvhtree_free(planetree); | 
					
						
							|  |  |  | 	if (results) | 
					
						
							|  |  |  | 		MEM_freeN(results); | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | static void knife_input_ray_segment(KnifeTool_OpData *kcd, const float mval[2], const float ofs, | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  |                                     float r_origin[3], float r_origin_ofs[3]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	bglMats mats; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	bgl_get_mats(&mats); | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* unproject to find view ray */ | 
					
						
							|  |  |  | 	ED_view3d_unproject(&mats, r_origin,     mval[0], mval[1], 0.0f); | 
					
						
							|  |  |  | 	ED_view3d_unproject(&mats, r_origin_ofs, mval[0], mval[1], ofs); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* transform into object space */ | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	invert_m4_m4(kcd->ob->imat, kcd->ob->obmat);  | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, r_origin); | 
					
						
							|  |  |  | 	mul_m4_v3(kcd->ob->imat, r_origin_ofs); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | static BMFace *knife_find_closest_face(KnifeTool_OpData *kcd, float co[3], float cageco[3], bool *is_space) | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2012-10-10 01:22:19 +00:00
										 |  |  | 	float dist = KMAXDIST; | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 	float origin[3]; | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 	float origin_ofs[3]; | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 	float ray[3]; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* unproject to find view ray */ | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	knife_input_ray_segment(kcd, kcd->curr.mval, 1.0f, origin, origin_ofs); | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 	sub_v3_v3v3(ray, origin_ofs, origin); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-08-30 16:34:44 +00:00
										 |  |  | 	f = BKE_bmbvh_ray_cast(kcd->bmbvh, origin, ray, 0.0f, NULL, co, cageco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	if (is_space) | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		*is_space = !f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (!f) { | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		if (kcd->is_interactive) { | 
					
						
							|  |  |  | 			/* try to use backbuffer selection method if ray casting failed */ | 
					
						
							|  |  |  | 			f = EDBM_face_find_nearest(&kcd->vc, &dist); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 			/* cheat for now; just put in the origin instead
 | 
					
						
							|  |  |  | 			 * of a true coordinate on the face. | 
					
						
							|  |  |  | 			 * This just puts a point 1.0f infront of the view. */ | 
					
						
							|  |  |  | 			add_v3_v3v3(co, origin, ray); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return f; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* find the 2d screen space density of vertices within a radius.  used to scale snapping
 | 
					
						
							|  |  |  |  * distance for picking edges/verts.*/ | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | static int knife_sample_screen_density(KnifeTool_OpData *kcd, const float radius) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool is_space; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	float co[3], cageco[3], sco[2]; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	BLI_assert(kcd->is_interactive == true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	f = knife_find_closest_face(kcd, co, cageco, &is_space); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	if (f && !is_space) { | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		const float radius_sq = radius * radius; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		ListBase *lst; | 
					
						
							|  |  |  | 		Ref *ref; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		float dis_sq; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		int c = 0; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 		knife_project_v2(kcd, cageco, sco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		lst = knife_get_face_kedges(kcd, f); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 			KnifeEdge *kfe = ref->ref; | 
					
						
							|  |  |  | 			int i; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			for (i = 0; i < 2; i++) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 				KnifeVert *kfv = i ? kfe->v2 : kfe->v1; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 				knife_project_v2(kcd, kfv->cageco, kfv->sco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 				dis_sq = len_squared_v2v2(kfv->sco, sco); | 
					
						
							|  |  |  | 				if (dis_sq < radius_sq) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 					if (kcd->vc.rv3d->rflag & RV3D_CLIPPING) { | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 						if (ED_view3d_clipping_test(kcd->vc.rv3d, kfv->cageco, true) == 0) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 							c++; | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					else { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 						c++; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		return c; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* returns snapping distance for edges/verts, scaled by the density of the
 | 
					
						
							|  |  |  |  * surrounding mesh (in screen space)*/ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static float knife_snap_size(KnifeTool_OpData *kcd, float maxsize) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	float density; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kcd->is_interactive) { | 
					
						
							|  |  |  | 		density = (float)knife_sample_screen_density(kcd, maxsize * 2.0f); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		density = 1.0f; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-06 22:48:28 +00:00
										 |  |  | 	if (density < 1.0f) | 
					
						
							|  |  |  | 		density = 1.0f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-10-23 13:28:22 +00:00
										 |  |  | 	return min_ff(maxsize / (density * 0.5f), maxsize); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* p is closest point on edge to the mouse cursor */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static KnifeEdge *knife_find_closest_edge(KnifeTool_OpData *kcd, float p[3], float cagep[3], | 
					
						
							|  |  |  |                                           BMFace **fptr, bool *is_space) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 	float co[3], cageco[3], sco[2]; | 
					
						
							|  |  |  | 	float maxdist = knife_snap_size(kcd, kcd->ethresh); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 	if (kcd->ignore_vert_snapping) | 
					
						
							| 
									
										
										
										
											2012-05-03 21:35:04 +00:00
										 |  |  | 		maxdist *= 0.5f; | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	f = knife_find_closest_face(kcd, co, cageco, NULL); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	*is_space = !f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* set p to co, in case we don't find anything, means a face cut */ | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	copy_v3_v3(p, co); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	copy_v3_v3(cagep, cageco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	kcd->curr.bmface = f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (f) { | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 		const float maxdist_sq = maxdist * maxdist; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		KnifeEdge *cure = NULL; | 
					
						
							|  |  |  | 		ListBase *lst; | 
					
						
							|  |  |  | 		Ref *ref; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 		float dis_sq, curdis_sq = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 		knife_project_v2(kcd, cageco, sco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		/* look through all edges associated with this face */ | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		lst = knife_get_face_kedges(kcd, f); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 			KnifeEdge *kfe = ref->ref; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			/* project edge vertices into screen space */ | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 			knife_project_v2(kcd, kfe->v1->cageco, kfe->v1->sco); | 
					
						
							|  |  |  | 			knife_project_v2(kcd, kfe->v2->cageco, kfe->v2->sco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 			dis_sq = dist_squared_to_line_segment_v2(sco, kfe->v1->sco, kfe->v2->sco); | 
					
						
							|  |  |  | 			if (dis_sq < curdis_sq && dis_sq < maxdist_sq) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 				if (kcd->vc.rv3d->rflag & RV3D_CLIPPING) { | 
					
						
							| 
									
										
										
										
											2012-12-11 14:18:37 +00:00
										 |  |  | 					float lambda = line_point_factor_v2(sco, kfe->v1->sco, kfe->v2->sco); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 					float vec[3]; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 14:18:37 +00:00
										 |  |  | 					interp_v3_v3v3(vec, kfe->v1->cageco, kfe->v2->cageco, lambda); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 					if (ED_view3d_clipping_test(kcd->vc.rv3d, vec, true) == 0) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 						cure = kfe; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 						curdis_sq = dis_sq; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 					} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 					cure = kfe; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:24 +00:00
										 |  |  | 					curdis_sq = dis_sq; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		if (fptr) | 
					
						
							|  |  |  | 			*fptr = f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-03 11:37:47 +00:00
										 |  |  | 		if (cure) { | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 			if (!kcd->ignore_edge_snapping || !(cure->e)) { | 
					
						
							| 
									
										
										
										
											2012-06-21 08:58:17 +00:00
										 |  |  | 				KnifeVert *edgesnap = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 				if (kcd->snap_midpoints) { | 
					
						
							| 
									
										
										
										
											2011-11-16 06:17:56 +00:00
										 |  |  | 					mid_v3_v3v3(p, cure->v1->co, cure->v2->co); | 
					
						
							|  |  |  | 					mid_v3_v3v3(cagep, cure->v1->cageco, cure->v2->cageco); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 					float d; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 					closest_to_line_segment_v3(cagep, cageco, cure->v1->cageco, cure->v2->cageco); | 
					
						
							|  |  |  | 					d = len_v3v3(cagep, cure->v1->cageco) / len_v3v3(cure->v1->cageco, cure->v2->cageco); | 
					
						
							|  |  |  | 					interp_v3_v3v3(p, cure->v1->co, cure->v2->co, d); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-06-21 08:58:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				/* update mouse coordinates to the snapped-to edge's screen coordinates
 | 
					
						
							|  |  |  | 				 * this is important for angle snap, which uses the previous mouse position */ | 
					
						
							|  |  |  | 				edgesnap = new_knife_vert(kcd, p, cagep); | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 				kcd->curr.mval[0] = edgesnap->sco[0]; | 
					
						
							|  |  |  | 				kcd->curr.mval[1] = edgesnap->sco[1]; | 
					
						
							| 
									
										
										
										
											2012-06-21 08:58:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 				return NULL; | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		return cure; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (fptr) | 
					
						
							|  |  |  | 		*fptr = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* find a vertex near the mouse cursor, if it exists */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static KnifeVert *knife_find_closest_vert(KnifeTool_OpData *kcd, float p[3], float cagep[3], BMFace **fptr, | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  |                                           bool *is_space) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 	float co[3], cageco[3], sco[2], maxdist = knife_snap_size(kcd, kcd->vthresh); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 	if (kcd->ignore_vert_snapping) | 
					
						
							| 
									
										
										
										
											2012-05-03 21:35:04 +00:00
										 |  |  | 		maxdist *= 0.5f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	f = knife_find_closest_face(kcd, co, cageco, is_space); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	/* set p to co, in case we don't find anything, means a face cut */ | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	copy_v3_v3(p, co); | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	copy_v3_v3(cagep, cageco); | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	kcd->curr.bmface = f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (f) { | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		const float maxdist_sq = maxdist * maxdist; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		ListBase *lst; | 
					
						
							|  |  |  | 		Ref *ref; | 
					
						
							|  |  |  | 		KnifeVert *curv = NULL; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		float dis_sq, curdis_sq = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 		knife_project_v2(kcd, cageco, sco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		lst = knife_get_face_kedges(kcd, f); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 			KnifeEdge *kfe = ref->ref; | 
					
						
							|  |  |  | 			int i; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 			for (i = 0; i < 2; i++) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 				KnifeVert *kfv = i ? kfe->v2 : kfe->v1; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:17 +00:00
										 |  |  | 				knife_project_v2(kcd, kfv->cageco, kfv->sco); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 				dis_sq = len_squared_v2v2(kfv->sco, sco); | 
					
						
							|  |  |  | 				if (dis_sq < curdis_sq && dis_sq < maxdist_sq) { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 					if (kcd->vc.rv3d->rflag & RV3D_CLIPPING) { | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 						if (ED_view3d_clipping_test(kcd->vc.rv3d, kfv->cageco, true) == 0) { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 							curv = kfv; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 							curdis_sq = dis_sq; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					else { | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 						curv = kfv; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 						curdis_sq = dis_sq; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 		if (!kcd->ignore_vert_snapping || !(curv && curv->v)) { | 
					
						
							|  |  |  | 			if (fptr) | 
					
						
							|  |  |  | 				*fptr = f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-03 11:37:47 +00:00
										 |  |  | 			if (curv) { | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 				copy_v3_v3(p, curv->co); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 				copy_v3_v3(cagep, curv->cageco); | 
					
						
							| 
									
										
										
										
											2012-06-21 08:58:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				/* update mouse coordinates to the snapped-to vertex's screen coordinates
 | 
					
						
							|  |  |  | 				 * this is important for angle snap, which uses the previous mouse position */ | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 				kcd->curr.mval[0] = curv->sco[0]; | 
					
						
							|  |  |  | 				kcd->curr.mval[1] = curv->sco[1]; | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 			return curv; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 			if (fptr) | 
					
						
							|  |  |  | 				*fptr = f; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-01 04:40:59 +00:00
										 |  |  | 			return NULL; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (fptr) | 
					
						
							|  |  |  | 		*fptr = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | /* update both kcd->curr.mval and kcd->mval to snap to required angle */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_snap_angle(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	float dx, dy; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	float w, abs_tan; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	dx = kcd->curr.mval[0] - kcd->prev.mval[0]; | 
					
						
							|  |  |  | 	dy = kcd->curr.mval[1] - kcd->prev.mval[1]; | 
					
						
							|  |  |  | 	if (dx == 0.0f && dy == 0.0f) | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	if (dx == 0.0f) { | 
					
						
							|  |  |  | 		kcd->angle_snapping = ANGLE_90; | 
					
						
							| 
									
										
										
										
											2013-01-12 14:28:23 +00:00
										 |  |  | 		kcd->curr.mval[0] = kcd->prev.mval[0]; | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	w = dy / dx; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	abs_tan = fabsf(w); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	if (abs_tan <= 0.4142f) { /* tan(22.5 degrees) = 0.4142 */ | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		kcd->angle_snapping = ANGLE_0; | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 		kcd->curr.mval[1] = kcd->prev.mval[1]; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else if (abs_tan < 2.4142f) { /* tan(67.5 degrees) = 2.4142 */ | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		if (w > 0) { | 
					
						
							|  |  |  | 			kcd->angle_snapping = ANGLE_45; | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 			kcd->curr.mval[1] = kcd->prev.mval[1] + dx; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 			kcd->angle_snapping = ANGLE_135; | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 			kcd->curr.mval[1] = kcd->prev.mval[1] - dx; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 		kcd->angle_snapping = ANGLE_90; | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 		kcd->curr.mval[0] = kcd->prev.mval[0]; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	copy_v2_v2(kcd->mval, kcd->curr.mval); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* update active knife edge/vert pointers */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static int knife_update_active(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 	knife_pos_data_clear(&kcd->curr); | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	copy_v2_v2(kcd->curr.mval, kcd->mval); | 
					
						
							| 
									
										
										
										
											2014-02-27 13:28:25 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* view matrix may have changed, reproject */ | 
					
						
							|  |  |  | 	knife_project_v2(kcd, kcd->prev.co, kcd->prev.mval); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	if (kcd->angle_snapping != ANGLE_FREE && kcd->mode == MODE_DRAGGING) | 
					
						
							|  |  |  | 		knife_snap_angle(kcd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-22 04:40:38 +00:00
										 |  |  | 	/* XXX knife_snap_angle updates the view coordinate mouse values to constrained angles,
 | 
					
						
							|  |  |  | 	 * which current mouse values are set to current mouse values are then used | 
					
						
							|  |  |  | 	 * for vertex and edge snap detection, without regard to the exact angle constraint */ | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	kcd->curr.vert = knife_find_closest_vert(kcd, kcd->curr.co, kcd->curr.cage, &kcd->curr.bmface, &kcd->curr.is_space); | 
					
						
							| 
									
										
										
										
											2012-06-21 08:58:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	if (!kcd->curr.vert) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		kcd->curr.edge = knife_find_closest_edge(kcd, kcd->curr.co, kcd->curr.cage, | 
					
						
							|  |  |  | 		                                         &kcd->curr.bmface, &kcd->curr.is_space); | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-24 02:51:46 +00:00
										 |  |  | 	/* if no hits are found this would normally default to (0, 0, 0) so instead
 | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 	 * get a point at the mouse ray closest to the previous point. | 
					
						
							|  |  |  | 	 * Note that drawing lines in `free-space` isn't properly supported | 
					
						
							| 
									
										
										
										
											2012-03-24 02:51:46 +00:00
										 |  |  | 	 * but theres no guarantee (0, 0, 0) has any geometry either - campbell */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (kcd->curr.vert == NULL && kcd->curr.edge == NULL && kcd->curr.bmface == NULL) { | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 		float origin[3]; | 
					
						
							|  |  |  | 		float origin_ofs[3]; | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-01-11 14:13:22 +00:00
										 |  |  | 		knife_input_ray_segment(kcd, kcd->curr.mval, 1.0f, origin, origin_ofs); | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-03 15:09:33 +00:00
										 |  |  | 		closest_to_line_v3(kcd->curr.cage, kcd->prev.cage, origin_ofs, origin); | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		copy_v3_v3(kcd->curr.co, kcd->curr.cage); | 
					
						
							| 
									
										
										
										
											2011-10-18 08:39:26 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	if (kcd->mode == MODE_DRAGGING) { | 
					
						
							|  |  |  | 		knife_find_line_hits(kcd); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | /* sort list of kverts by fraction along edge e */ | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | static void sort_by_frac_along(ListBase *lst, BMEdge *e) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:31 +00:00
										 |  |  | 	/* note, since we know the point is along the edge, sort from distance to v1co */ | 
					
						
							| 
									
										
										
										
											2013-05-03 05:57:33 +00:00
										 |  |  | 	const float *v1co = e->v1->co; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	Ref *cur = NULL, *prev = NULL, *next = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (lst->first == lst->last) | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	for (cur = ((Ref *)lst->first)->next; cur; cur = next) { | 
					
						
							| 
									
										
										
										
											2013-05-03 05:57:33 +00:00
										 |  |  | 		KnifeVert *vcur = cur->ref; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 		const float vcur_fac_sq = len_squared_v3v3(v1co, vcur->co); | 
					
						
							| 
									
										
										
										
											2013-05-03 05:57:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		next = cur->next; | 
					
						
							|  |  |  | 		prev = cur->prev; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BLI_remlink(lst, cur); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (prev) { | 
					
						
							| 
									
										
										
										
											2013-05-03 05:57:33 +00:00
										 |  |  | 			KnifeVert *vprev = prev->ref; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 			if (len_squared_v3v3(v1co, vprev->co) <= vcur_fac_sq) | 
					
						
							| 
									
										
										
										
											2013-05-08 12:56:31 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			prev = prev->prev; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BLI_insertlinkafter(lst, prev, cur); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The chain so far goes from an instantiated vertex to kfv (some may be reversed).
 | 
					
						
							|  |  |  |  * If possible, complete the chain to another instantiated vertex and return 1, else return 0. | 
					
						
							|  |  |  |  * The visited hash says which KnifeVert's have already been tried, not including kfv. */ | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | static bool find_chain_search(KnifeTool_OpData *kcd, KnifeVert *kfv, ListBase *fedges, SmallHash *visited, | 
					
						
							|  |  |  |                               ListBase *chain) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	Ref *r; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	KnifeVert *kfv_other; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kfv->v) | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BLI_smallhash_insert(visited, (uintptr_t)kfv, NULL); | 
					
						
							|  |  |  | 	/* Try all possible next edges. Could either go through fedges
 | 
					
						
							|  |  |  | 	 * (all the KnifeEdges for the face being cut) or could go through | 
					
						
							|  |  |  | 	 * kve->edges and restrict to cutting face and uninstantiated edges. | 
					
						
							|  |  |  | 	 * Not clear which is better. Let's do the first. */ | 
					
						
							|  |  |  | 	for (r = fedges->first; r; r = r->next) { | 
					
						
							|  |  |  | 		kfe = r->ref; | 
					
						
							|  |  |  | 		kfv_other = NULL; | 
					
						
							|  |  |  | 		if (kfe->v1 == kfv) | 
					
						
							|  |  |  | 			kfv_other = kfe->v2; | 
					
						
							|  |  |  | 		else if (kfe->v2 == kfv) | 
					
						
							|  |  |  | 			kfv_other = kfe->v1; | 
					
						
							|  |  |  | 		if (kfv_other && !BLI_smallhash_haskey(visited, (uintptr_t)kfv_other)) { | 
					
						
							|  |  |  | 			knife_append_list(kcd, chain, kfe); | 
					
						
							|  |  |  | 			if (find_chain_search(kcd, kfv_other, fedges, visited, chain)) | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			BLI_remlink(chain, chain->last); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *find_chain_from_vertex(KnifeTool_OpData *kcd, KnifeEdge *kfe, BMVert *v, ListBase *fedges) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	SmallHash visited_, *visited = &visited_; | 
					
						
							|  |  |  | 	ListBase *ans; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool found; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ans = knife_empty_list(kcd); | 
					
						
							|  |  |  | 	knife_append_list(kcd, ans, kfe); | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	found = false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	BLI_smallhash_init(visited); | 
					
						
							|  |  |  | 	if (kfe->v1->v == v) { | 
					
						
							|  |  |  | 		BLI_smallhash_insert(visited, (uintptr_t)(kfe->v1), NULL); | 
					
						
							|  |  |  | 		found = find_chain_search(kcd, kfe->v2, fedges, visited, ans); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		BLI_assert(kfe->v2->v == v); | 
					
						
							|  |  |  | 		BLI_smallhash_insert(visited, (uintptr_t)(kfe->v2), NULL); | 
					
						
							|  |  |  | 		found = find_chain_search(kcd, kfe->v1, fedges, visited, ans); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_smallhash_release(visited); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (found) | 
					
						
							|  |  |  | 		return ans; | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return NULL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Find a chain in fedges from one instantiated vertex to another.
 | 
					
						
							|  |  |  |  * Remove the edges in the chain from fedges and return a separate list of the chain. */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *find_chain(KnifeTool_OpData *kcd, ListBase *fedges) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	Ref *r, *ref; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	BMVert *v1, *v2; | 
					
						
							|  |  |  | 	ListBase *ans; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ans = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	for (r = fedges->first; r; r = r->next) { | 
					
						
							|  |  |  | 		kfe = r->ref; | 
					
						
							|  |  |  | 		v1 = kfe->v1->v; | 
					
						
							|  |  |  | 		v2 = kfe->v2->v; | 
					
						
							|  |  |  | 		if (v1 && v2) { | 
					
						
							|  |  |  | 			ans = knife_empty_list(kcd); | 
					
						
							|  |  |  | 			knife_append_list(kcd, ans, kfe); | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (v1) | 
					
						
							|  |  |  | 			ans = find_chain_from_vertex(kcd, kfe, v1, fedges); | 
					
						
							|  |  |  | 		else if (v2) | 
					
						
							|  |  |  | 			ans = find_chain_from_vertex(kcd, kfe, v2, fedges); | 
					
						
							|  |  |  | 		if (ans) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (ans) { | 
					
						
							|  |  |  | 		BLI_assert(BLI_countlist(ans) > 0); | 
					
						
							|  |  |  | 		for (r = ans->first; r; r = r->next) { | 
					
						
							|  |  |  | 			ref = find_ref(fedges, r->ref); | 
					
						
							|  |  |  | 			BLI_assert(ref != NULL); | 
					
						
							|  |  |  | 			BLI_remlink(fedges, ref); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return ans; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* The hole so far goes from kfvfirst to kfv (some may be reversed).
 | 
					
						
							|  |  |  |  * If possible, complete the hole back to kfvfirst and return 1, else return 0. | 
					
						
							|  |  |  |  * The visited hash says which KnifeVert's have already been tried, not including kfv or kfvfirst. */ | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | static bool find_hole_search(KnifeTool_OpData *kcd, KnifeVert *kfvfirst, KnifeVert *kfv, ListBase *fedges, | 
					
						
							|  |  |  |                              SmallHash *visited, ListBase *hole) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	Ref *r; | 
					
						
							|  |  |  | 	KnifeEdge *kfe, *kfelast; | 
					
						
							|  |  |  | 	KnifeVert *kfv_other; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (kfv == kfvfirst) | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	BLI_smallhash_insert(visited, (uintptr_t)kfv, NULL); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	kfelast = ((Ref *)hole->last)->ref; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	for (r = fedges->first; r; r = r->next) { | 
					
						
							|  |  |  | 		kfe = r->ref; | 
					
						
							|  |  |  | 		if (kfe == kfelast) | 
					
						
							|  |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		if (kfe->v1->v || kfe->v2->v) | 
					
						
							|  |  |  | 			continue; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		kfv_other = NULL; | 
					
						
							|  |  |  | 		if (kfe->v1 == kfv) | 
					
						
							|  |  |  | 			kfv_other = kfe->v2; | 
					
						
							|  |  |  | 		else if (kfe->v2 == kfv) | 
					
						
							|  |  |  | 			kfv_other = kfe->v1; | 
					
						
							|  |  |  | 		if (kfv_other && !BLI_smallhash_haskey(visited, (uintptr_t)kfv_other)) { | 
					
						
							|  |  |  | 			knife_append_list(kcd, hole, kfe); | 
					
						
							|  |  |  | 			if (find_hole_search(kcd, kfvfirst, kfv_other, fedges, visited, hole)) | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			BLI_remlink(hole, hole->last); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Find a hole (simple cycle with no instantiated vertices).
 | 
					
						
							|  |  |  |  * Remove the edges in the cycle from fedges and return a separate list of the cycle */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static ListBase *find_hole(KnifeTool_OpData *kcd, ListBase *fedges) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	ListBase *ans; | 
					
						
							|  |  |  | 	Ref *r, *ref; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	SmallHash visited_, *visited = &visited_; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool found; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	ans = NULL; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	found = false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	for (r = fedges->first; r && !found; r = r->next) { | 
					
						
							|  |  |  | 		kfe = r->ref; | 
					
						
							|  |  |  | 		if (kfe->v1->v || kfe->v2->v || kfe->v1 == kfe->v2) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BLI_smallhash_init(visited); | 
					
						
							|  |  |  | 		ans = knife_empty_list(kcd); | 
					
						
							|  |  |  | 		knife_append_list(kcd, ans, kfe); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		found = find_hole_search(kcd, kfe->v1, kfe->v2, fedges, visited, ans); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		BLI_smallhash_release(visited); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (found) { | 
					
						
							|  |  |  | 		for (r = ans->first; r; r = r->next) { | 
					
						
							|  |  |  | 			kfe = r->ref; | 
					
						
							|  |  |  | 			ref = find_ref(fedges, r->ref); | 
					
						
							|  |  |  | 			if (ref) | 
					
						
							|  |  |  | 				BLI_remlink(fedges, ref); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return ans; | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Try to find "nice" diagonals - short, and far apart from each other.
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  |  * If found, return true and make a 'main chain' going across f which uses | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  |  * the two diagonals and one part of the hole, and a 'side chain' that | 
					
						
							|  |  |  |  * completes the hole. */ | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | static bool find_hole_chains(KnifeTool_OpData *kcd, ListBase *hole, BMFace *f, ListBase **mainchain, | 
					
						
							|  |  |  |                              ListBase **sidechain) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	float **fco, **hco; | 
					
						
							|  |  |  | 	BMVert **fv; | 
					
						
							|  |  |  | 	KnifeVert **hv; | 
					
						
							|  |  |  | 	KnifeEdge **he; | 
					
						
							|  |  |  | 	Ref *r; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 	KnifeVert *kfv, *kfvother; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	ListBase *chain; | 
					
						
							|  |  |  | 	BMVert *v; | 
					
						
							|  |  |  | 	BMIter iter; | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 	int nh, nf, i, j, k, m, ax, ay, sep = 0 /* Quite warnings */, bestsep; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	int besti[2], bestj[2]; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 	float dist_sq, dist_best_sq; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	nh = BLI_countlist(hole); | 
					
						
							|  |  |  | 	nf = f->len; | 
					
						
							|  |  |  | 	if (nh < 2 || nf < 3) | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* Gather 2d projections of hole and face vertex coordinates.
 | 
					
						
							|  |  |  | 	 * Use best-axis projection - not completely accurate, maybe revisit */ | 
					
						
							|  |  |  | 	axis_dominant_v3(&ax, &ay, f->no); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	hco = BLI_memarena_alloc(kcd->arena, nh * sizeof(float *)); | 
					
						
							|  |  |  | 	fco = BLI_memarena_alloc(kcd->arena, nf * sizeof(float *)); | 
					
						
							|  |  |  | 	hv = BLI_memarena_alloc(kcd->arena, nh * sizeof(KnifeVert *)); | 
					
						
							|  |  |  | 	fv = BLI_memarena_alloc(kcd->arena, nf * sizeof(BMVert *)); | 
					
						
							|  |  |  | 	he = BLI_memarena_alloc(kcd->arena, nh * sizeof(KnifeEdge *)); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	i = 0; | 
					
						
							|  |  |  | 	kfv = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 	kfvother = NULL; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	for (r = hole->first; r; r = r->next) { | 
					
						
							|  |  |  | 		kfe = r->ref; | 
					
						
							|  |  |  | 		he[i] = kfe; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		if (kfvother == NULL) { | 
					
						
							|  |  |  | 			kfv = kfe->v1; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 			kfv = kfvother; | 
					
						
							|  |  |  | 			BLI_assert(kfv == kfe->v1 || kfv == kfe->v2); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		hco[i] = BLI_memarena_alloc(kcd->arena, 2 * sizeof(float)); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		hco[i][0] = kfv->co[ax]; | 
					
						
							|  |  |  | 		hco[i][1] = kfv->co[ay]; | 
					
						
							|  |  |  | 		hv[i] = kfv; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		kfvother = (kfe->v1 == kfv) ? kfe->v2 : kfe->v1; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		i++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	j = 0; | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_ELEM (v, &iter, f, BM_VERTS_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		fco[j] = BLI_memarena_alloc(kcd->arena, 2 * sizeof(float)); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		fco[j][0] = v->co[ax]; | 
					
						
							|  |  |  | 		fco[j][1] = v->co[ay]; | 
					
						
							|  |  |  | 		fv[j] = v; | 
					
						
							|  |  |  | 		j++; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-24 02:51:46 +00:00
										 |  |  | 	/* For first diagonal  (m == 0), want shortest length.
 | 
					
						
							|  |  |  | 	 * For second diagonal (m == 1), want max separation of index of hole | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	 * vertex from the hole vertex used in the first diagonal, and from there | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 	 * want the one with shortest length not to the same vertex as the first diagonal. */ | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	for (m = 0; m < 2; m++) { | 
					
						
							|  |  |  | 		besti[m] = -1; | 
					
						
							|  |  |  | 		bestj[m] = -1; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 		dist_best_sq = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		bestsep = 0; | 
					
						
							|  |  |  | 		for (i = 0; i < nh; i++) { | 
					
						
							|  |  |  | 			if (m == 1) { | 
					
						
							|  |  |  | 				if (i == besti[0]) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				sep = (i + nh - besti[0]) % nh; | 
					
						
							|  |  |  | 				sep = MIN2(sep, nh - sep); | 
					
						
							|  |  |  | 				if (sep < bestsep) | 
					
						
							|  |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 				dist_best_sq = FLT_MAX; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			for (j = 0; j < nf; j++) { | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				bool ok; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 				if (m == 1 && j == bestj[0]) | 
					
						
							|  |  |  | 					continue; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 				dist_sq = len_squared_v2v2(hco[i], fco[j]); | 
					
						
							|  |  |  | 				if (dist_sq > dist_best_sq) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 					continue; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				ok = true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				for (k = 0; k < nh && ok; k++) { | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 					if (k == i || (k + 1) % nh == i) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 						continue; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 					if (isect_line_line_v2(hco[i], fco[j], hco[k], hco[(k + 1) % nh])) | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 						ok = false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				if (!ok) | 
					
						
							|  |  |  | 					continue; | 
					
						
							|  |  |  | 				for (k = 0; k < nf && ok; k++) { | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 					if (k == j || (k + 1) % nf == j) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 						continue; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 					if (isect_line_line_v2(hco[i], fco[j], fco[k], fco[(k + 1) % nf])) | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 						ok = false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				if (ok) { | 
					
						
							|  |  |  | 					besti[m] = i; | 
					
						
							|  |  |  | 					bestj[m] = j; | 
					
						
							|  |  |  | 					if (m == 1) | 
					
						
							|  |  |  | 						bestsep = sep; | 
					
						
							| 
									
										
										
										
											2014-02-03 02:46:45 +11:00
										 |  |  | 					dist_best_sq = dist_sq; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (besti[0] != -1 && besti[1] != -1) { | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		BLI_assert(besti[0] != besti[1] && bestj[0] != bestj[1]); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		kfe = new_knife_edge(kcd); | 
					
						
							|  |  |  | 		kfe->v1 = get_bm_knife_vert(kcd, fv[bestj[0]]); | 
					
						
							|  |  |  | 		kfe->v2 = hv[besti[0]]; | 
					
						
							|  |  |  | 		chain = knife_empty_list(kcd); | 
					
						
							|  |  |  | 		knife_append_list(kcd, chain, kfe); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		for (i = besti[0]; i != besti[1]; i = (i + 1) % nh) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			knife_append_list(kcd, chain, he[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		kfe = new_knife_edge(kcd); | 
					
						
							|  |  |  | 		kfe->v1 = hv[besti[1]]; | 
					
						
							|  |  |  | 		kfe->v2 = get_bm_knife_vert(kcd, fv[bestj[1]]); | 
					
						
							|  |  |  | 		knife_append_list(kcd, chain, kfe); | 
					
						
							|  |  |  | 		*mainchain = chain; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		chain = knife_empty_list(kcd); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		for (i = besti[1]; i != besti[0]; i = (i + 1) % nh) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			knife_append_list(kcd, chain, he[i]); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		*sidechain = chain; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static bool knife_verts_edge_in_face(KnifeVert *v1, KnifeVert *v2, BMFace *f) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 	BMLoop *l1, *l2, *l; | 
					
						
							|  |  |  | 	float mid[3]; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	BMIter iter; | 
					
						
							|  |  |  | 	int v1inside, v2inside; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	if (!f || !v1 || !v2) | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		return false; | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	l1 = NULL; | 
					
						
							|  |  |  | 	l2 = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* find out if v1 and v2, if set, are part of the face */ | 
					
						
							| 
									
										
										
										
											2012-04-19 13:47:58 +00:00
										 |  |  | 	BM_ITER_ELEM (l, &iter, f, BM_LOOPS_OF_FACE) { | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if (v1->v && l->v == v1->v) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			l1 = l; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		if (v2->v && l->v == v2->v) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			l2 = l; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* BM_face_point_inside_test uses best-axis projection so this isn't most accurate test... */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	v1inside = l1 ? 0 : BM_face_point_inside_test(f, v1->co); | 
					
						
							|  |  |  | 	v2inside = l2 ? 0 : BM_face_point_inside_test(f, v2->co); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	if ((l1 && v2inside) || (l2 && v1inside) || (v1inside && v2inside)) | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	if (l1 && l2) { | 
					
						
							|  |  |  | 		/* Can have case where v1 and v2 are on shared chain between two faces.
 | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		 * BM_face_legal_splits does visibility and self-intersection tests, | 
					
						
							|  |  |  | 		 * but it is expensive and maybe a bit buggy, so use a simple | 
					
						
							|  |  |  | 		 * "is the midpoint in the face" test */ | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 		mid_v3_v3v3(mid, v1->co, v2->co); | 
					
						
							| 
									
										
										
										
											2012-04-19 14:38:09 +00:00
										 |  |  | 		return BM_face_point_inside_test(f, mid); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 	return false; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | static bool knife_edge_in_face(KnifeEdge *kfe, BMFace *f) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return knife_verts_edge_in_face(kfe->v1, kfe->v2, f); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | /* Split face f with KnifeEdges on chain.  f remains as one side, the face formed is put in *newface.
 | 
					
						
							|  |  |  |  * The new face will be on the left side of the chain as viewed from the normal-out side of f. */ | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | static void knife_make_chain_cut(KnifeTool_OpData *kcd, BMFace *f, ListBase *chain, BMFace **r_f_new) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	BMesh *bm = kcd->em->bm; | 
					
						
							|  |  |  | 	KnifeEdge *kfe, *kfelast; | 
					
						
							|  |  |  | 	BMVert *v1, *v2; | 
					
						
							| 
									
										
										
										
											2013-12-24 11:04:03 +11:00
										 |  |  | 	BMLoop *l_v1, *l_v2; | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 	BMFace *f_new; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	Ref *ref; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	KnifeVert *kfv, *kfvprev; | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 	BMLoop *l_new, *l_iter; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	int i; | 
					
						
							|  |  |  | 	int nco = BLI_countlist(chain) - 1; | 
					
						
							| 
									
										
										
										
											2012-12-11 15:10:19 +00:00
										 |  |  | 	float (*cos)[3] = BLI_array_alloca(cos, nco); | 
					
						
							|  |  |  | 	KnifeVert **kverts = BLI_array_alloca(kverts, nco); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	kfe = ((Ref *)chain->first)->ref; | 
					
						
							|  |  |  | 	v1 = kfe->v1->v ? kfe->v1->v : kfe->v2->v; | 
					
						
							|  |  |  | 	kfelast = ((Ref *)chain->last)->ref; | 
					
						
							|  |  |  | 	v2 = kfelast->v2->v ? kfelast->v2->v : kfelast->v1->v; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	BLI_assert(v1 != NULL && v2 != NULL); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	kfvprev = kfe->v1->v == v1 ? kfe->v1 : kfe->v2; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	for (ref = chain->first, i = 0; i < nco && ref != chain->last; ref = ref->next, i++) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		kfe = ref->ref; | 
					
						
							|  |  |  | 		BLI_assert(kfvprev == kfe->v1 || kfvprev == kfe->v2); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		kfv = kfe->v1 == kfvprev ? kfe->v2 : kfe->v1; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		copy_v3_v3(cos[i], kfv->co); | 
					
						
							|  |  |  | 		kverts[i] = kfv; | 
					
						
							|  |  |  | 		kfvprev = kfv; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	BLI_assert(i == nco); | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 	l_new = NULL; | 
					
						
							| 
									
										
										
										
											2013-12-24 11:04:03 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if ((l_v1 = BM_face_vert_share_loop(f, v1)) && | 
					
						
							|  |  |  | 	    (l_v2 = BM_face_vert_share_loop(f, v2))) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		if (nco == 0) { | 
					
						
							|  |  |  | 			/* Want to prevent creating two-sided polygons */ | 
					
						
							|  |  |  | 			if (v1 == v2 || BM_edge_exists(v1, v2)) { | 
					
						
							|  |  |  | 				f_new = NULL; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							|  |  |  | 				f_new = BM_face_split(bm, f, l_v1, l_v2, &l_new, NULL, true); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		else { | 
					
						
							| 
									
										
										
										
											2013-12-24 11:04:03 +11:00
										 |  |  | 			f_new = BM_face_split_n(bm, f, l_v1, l_v2, cos, nco, &l_new, NULL); | 
					
						
							|  |  |  | 			if (f_new) { | 
					
						
							|  |  |  | 				/* Now go through lnew chain matching up chain kv's and assign real v's to them */ | 
					
						
							|  |  |  | 				for (l_iter = l_new->next, i = 0; i < nco; l_iter = l_iter->next, i++) { | 
					
						
							|  |  |  | 					BLI_assert(equals_v3v3(cos[i], l_iter->v->co)); | 
					
						
							|  |  |  | 					if (kcd->select_result) { | 
					
						
							|  |  |  | 						BM_edge_select_set(bm, l_iter->e, true); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					kverts[i]->v = l_iter->v; | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-12-24 11:04:03 +11:00
										 |  |  | 	else { | 
					
						
							|  |  |  | 		f_new = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 	/* the select chain above doesnt account for the first loop */ | 
					
						
							|  |  |  | 	if (kcd->select_result) { | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 		if (l_new) { | 
					
						
							|  |  |  | 			BM_edge_select_set(bm, l_new->e, true); | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-09-03 11:37:47 +00:00
										 |  |  | 	else if (f_new) { | 
					
						
							| 
									
										
										
										
											2013-08-13 00:35:23 +00:00
										 |  |  | 		BM_elem_select_copy(bm, bm, f_new, f); | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	*r_f_new = f_new; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_make_face_cuts(KnifeTool_OpData *kcd, BMFace *f, ListBase *kfedges) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	BMesh *bm = kcd->em->bm; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	BMFace *fnew, *fnew2, *fhole; | 
					
						
							|  |  |  | 	ListBase *chain, *hole, *sidechain; | 
					
						
							|  |  |  | 	ListBase *fnew_kfedges, *fnew2_kfedges; | 
					
						
							|  |  |  | 	Ref *ref, *refnext; | 
					
						
							|  |  |  | 	int count, oldcount; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	oldcount = BLI_countlist(kfedges); | 
					
						
							|  |  |  | 	while ((chain = find_chain(kcd, kfedges)) != NULL) { | 
					
						
							|  |  |  | 		knife_make_chain_cut(kcd, f, chain, &fnew); | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 		if (!fnew) { | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		/* Move kfedges to fnew_kfedges if they are now in fnew.
 | 
					
						
							|  |  |  | 		 * The chain edges were removed already */ | 
					
						
							|  |  |  | 		fnew_kfedges = knife_empty_list(kcd); | 
					
						
							|  |  |  | 		for (ref = kfedges->first; ref; ref = refnext) { | 
					
						
							|  |  |  | 			kfe = ref->ref; | 
					
						
							|  |  |  | 			refnext = ref->next; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			if (knife_edge_in_face(kfe, fnew)) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				BLI_remlink(kfedges, ref); | 
					
						
							|  |  |  | 				kfe->basef = fnew; | 
					
						
							|  |  |  | 				knife_append_list(kcd, fnew_kfedges, kfe); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (fnew_kfedges->first) | 
					
						
							|  |  |  | 			knife_make_face_cuts(kcd, fnew, fnew_kfedges); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 		/* find_chain should always remove edges if it returns true,
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		 * but guard against infinite loop anyway */ | 
					
						
							|  |  |  | 		count = BLI_countlist(kfedges); | 
					
						
							|  |  |  | 		if (count >= oldcount) { | 
					
						
							|  |  |  | 			BLI_assert(!"knife find_chain infinite loop"); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		oldcount = count; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while ((hole = find_hole(kcd, kfedges)) != NULL) { | 
					
						
							|  |  |  | 		if (find_hole_chains(kcd, hole, f, &chain, &sidechain)) { | 
					
						
							|  |  |  | 			/* chain goes across f and sidechain comes back
 | 
					
						
							|  |  |  | 			 * from the second last vertex to the second vertex. | 
					
						
							| 
									
										
										
										
											2012-03-09 18:28:30 +00:00
										 |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			knife_make_chain_cut(kcd, f, chain, &fnew); | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 			if (!fnew) { | 
					
						
							|  |  |  | 				BLI_assert(!"knife failed hole cut"); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 			kfe = ((Ref *)sidechain->first)->ref; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			if (knife_edge_in_face(kfe, f)) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				knife_make_chain_cut(kcd, f, sidechain, &fnew2); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:37:22 +00:00
										 |  |  | 				if (fnew2 == NULL) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				fhole = f; | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 			else if (knife_edge_in_face(kfe, fnew)) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				knife_make_chain_cut(kcd, fnew, sidechain, &fnew2); | 
					
						
							| 
									
										
										
										
											2013-03-19 21:37:22 +00:00
										 |  |  | 				if (fnew2 == NULL) { | 
					
						
							|  |  |  | 					return; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 				fhole = fnew2; | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			else { | 
					
						
							| 
									
										
										
										
											2012-03-12 11:27:59 +00:00
										 |  |  | 				/* shouldn't happen except in funny edge cases */ | 
					
						
							|  |  |  | 				return; | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			} | 
					
						
							|  |  |  | 			BM_face_kill(bm, fhole); | 
					
						
							|  |  |  | 			/* Move kfedges to either fnew or fnew2 if appropriate.
 | 
					
						
							|  |  |  | 			 * The hole edges were removed already */ | 
					
						
							|  |  |  | 			fnew_kfedges = knife_empty_list(kcd); | 
					
						
							|  |  |  | 			fnew2_kfedges = knife_empty_list(kcd); | 
					
						
							|  |  |  | 			for (ref = kfedges->first; ref; ref = refnext) { | 
					
						
							|  |  |  | 				kfe = ref->ref; | 
					
						
							|  |  |  | 				refnext = ref->next; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 				if (knife_edge_in_face(kfe, fnew)) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 					BLI_remlink(kfedges, ref); | 
					
						
							|  |  |  | 					kfe->basef = fnew; | 
					
						
							|  |  |  | 					knife_append_list(kcd, fnew_kfedges, kfe); | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 				else if (knife_edge_in_face(kfe, fnew2)) { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 					BLI_remlink(kfedges, ref); | 
					
						
							|  |  |  | 					kfe->basef = fnew2; | 
					
						
							|  |  |  | 					knife_append_list(kcd, fnew2_kfedges, kfe); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* We'll skip knife edges that are in the newly formed hole.
 | 
					
						
							|  |  |  | 			 * (Maybe we shouldn't have made a hole in the first place?) */ | 
					
						
							|  |  |  | 			if (fnew != fhole && fnew_kfedges->first) | 
					
						
							|  |  |  | 				knife_make_face_cuts(kcd, fnew, fnew_kfedges); | 
					
						
							|  |  |  | 			if (fnew2 != fhole && fnew2_kfedges->first) | 
					
						
							|  |  |  | 				knife_make_face_cuts(kcd, fnew2, fnew2_kfedges); | 
					
						
							|  |  |  | 			if (f == fhole) | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 			/* find_hole should always remove edges if it returns true,
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			 * but guard against infinite loop anyway */ | 
					
						
							|  |  |  | 			count = BLI_countlist(kfedges); | 
					
						
							|  |  |  | 			if (count >= oldcount) { | 
					
						
							|  |  |  | 				BLI_assert(!"knife find_hole infinite loop"); | 
					
						
							|  |  |  | 				return; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			oldcount = count; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Use the network of KnifeEdges and KnifeVerts accumulated to make real BMVerts and BMEdedges */ | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_make_cuts(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	BMesh *bm = kcd->em->bm; | 
					
						
							|  |  |  | 	KnifeEdge *kfe; | 
					
						
							|  |  |  | 	KnifeVert *kfv; | 
					
						
							|  |  |  | 	BMFace *f; | 
					
						
							|  |  |  | 	BMEdge *e, *enew; | 
					
						
							|  |  |  | 	ListBase *lst; | 
					
						
							|  |  |  | 	Ref *ref; | 
					
						
							|  |  |  | 	float pct; | 
					
						
							|  |  |  | 	SmallHashIter hiter; | 
					
						
							|  |  |  | 	BLI_mempool_iter iter; | 
					
						
							|  |  |  | 	SmallHash fhash_, *fhash = &fhash_; | 
					
						
							|  |  |  | 	SmallHash ehash_, *ehash = &ehash_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_smallhash_init(fhash); | 
					
						
							|  |  |  | 	BLI_smallhash_init(ehash); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* put list of cutting edges for a face into fhash, keyed by face */ | 
					
						
							|  |  |  | 	BLI_mempool_iternew(kcd->kedges, &iter); | 
					
						
							|  |  |  | 	for (kfe = BLI_mempool_iterstep(&iter); kfe; kfe = BLI_mempool_iterstep(&iter)) { | 
					
						
							|  |  |  | 		f = kfe->basef; | 
					
						
							|  |  |  | 		if (!f || kfe->e) | 
					
						
							|  |  |  | 			continue; | 
					
						
							|  |  |  | 		lst = BLI_smallhash_lookup(fhash, (uintptr_t)f); | 
					
						
							|  |  |  | 		if (!lst) { | 
					
						
							|  |  |  | 			lst = knife_empty_list(kcd); | 
					
						
							|  |  |  | 			BLI_smallhash_insert(fhash, (uintptr_t)f, lst); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		knife_append_list(kcd, lst, kfe); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* put list of splitting vertices for an edge into ehash, keyed by edge */ | 
					
						
							|  |  |  | 	BLI_mempool_iternew(kcd->kverts, &iter); | 
					
						
							|  |  |  | 	for (kfv = BLI_mempool_iterstep(&iter); kfv; kfv = BLI_mempool_iterstep(&iter)) { | 
					
						
							|  |  |  | 		if (kfv->v) | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 			continue;  /* already have a BMVert */ | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		for (ref = kfv->edges.first; ref; ref = ref->next) { | 
					
						
							|  |  |  | 			kfe = ref->ref; | 
					
						
							|  |  |  | 			e = kfe->e; | 
					
						
							|  |  |  | 			if (!e) | 
					
						
							|  |  |  | 				continue; | 
					
						
							|  |  |  | 			lst = BLI_smallhash_lookup(ehash, (uintptr_t)e); | 
					
						
							|  |  |  | 			if (!lst) { | 
					
						
							|  |  |  | 				lst = knife_empty_list(kcd); | 
					
						
							|  |  |  | 				BLI_smallhash_insert(ehash, (uintptr_t)e, lst); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			/* there can be more than one kfe in kfv's list with same e */ | 
					
						
							|  |  |  | 			if (!find_ref(lst, kfv)) | 
					
						
							|  |  |  | 				knife_append_list(kcd, lst, kfv); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* split bmesh edges where needed */ | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	for (lst = BLI_smallhash_iternew(ehash, &hiter, (uintptr_t *)&e); lst; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	     lst = BLI_smallhash_iternext(&hiter, (uintptr_t *)&e)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		sort_by_frac_along(lst, e); | 
					
						
							|  |  |  | 		for (ref = lst->first; ref; ref = ref->next) { | 
					
						
							|  |  |  | 			kfv = ref->ref; | 
					
						
							| 
									
										
										
										
											2013-05-03 05:57:33 +00:00
										 |  |  | 			pct = line_point_factor_v3(kfv->co, e->v1->co, e->v2->co); | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 			kfv->v = BM_edge_split(bm, e, e->v1, &enew, pct); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:05:08 +00:00
										 |  |  | 	if (kcd->only_select) { | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 		EDBM_flag_disable_all(kcd->em, BM_ELEM_SELECT); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	/* do cuts for each face */ | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | 	for (lst = BLI_smallhash_iternew(fhash, &hiter, (uintptr_t *)&f); lst; | 
					
						
							| 
									
										
										
										
											2012-03-26 02:56:48 +00:00
										 |  |  | 	     lst = BLI_smallhash_iternext(&hiter, (uintptr_t *)&f)) | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 		knife_make_face_cuts(kcd, f, lst); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_smallhash_release(fhash); | 
					
						
							|  |  |  | 	BLI_smallhash_release(ehash); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | /* called on tool confirmation */ | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | static void knifetool_finish_ex(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-07 14:44:43 +00:00
										 |  |  | 	knife_make_cuts(kcd); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-24 19:31:58 +00:00
										 |  |  | 	EDBM_selectmode_flush(kcd->em); | 
					
						
							| 
									
										
										
										
											2012-05-03 16:35:51 +00:00
										 |  |  | 	EDBM_mesh_normals_update(kcd->em); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 	EDBM_update_generic(kcd->em, true, true); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | static void knifetool_finish(wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	KnifeTool_OpData *kcd = op->customdata; | 
					
						
							|  |  |  | 	knifetool_finish_ex(kcd); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | static void knife_recalc_projmat(KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	invert_m4_m4(kcd->ob->imat, kcd->ob->obmat); | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | 	ED_view3d_ob_project_mat_get(kcd->ar->regiondata, kcd->ob, kcd->projmat); | 
					
						
							| 
									
										
										
										
											2013-05-26 18:36:25 +00:00
										 |  |  | 	//mul_m4_m4m4(kcd->projmat, kcd->vc.rv3d->winmat, kcd->vc.rv3d->viewmat);
 | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | 	kcd->is_ortho = ED_view3d_clip_range_get(kcd->vc.v3d, kcd->vc.rv3d, | 
					
						
							|  |  |  | 	                                         &kcd->clipsta, &kcd->clipend, true); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* called when modal loop selection is done... */ | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | static void knifetool_exit_ex(bContext *C, KnifeTool_OpData *kcd) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!kcd) | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	if (kcd->is_interactive) { | 
					
						
							| 
									
										
										
										
											2013-09-06 22:34:29 +00:00
										 |  |  | 		WM_cursor_modal_restore(CTX_wm_window(C)); | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		/* deactivate the extra drawing stuff in 3D-View */ | 
					
						
							|  |  |  | 		ED_region_draw_cb_exit(kcd->ar->type, kcd->draw_handle); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* free the custom data */ | 
					
						
							|  |  |  | 	BLI_mempool_destroy(kcd->refs); | 
					
						
							|  |  |  | 	BLI_mempool_destroy(kcd->kverts); | 
					
						
							|  |  |  | 	BLI_mempool_destroy(kcd->kedges); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	BLI_ghash_free(kcd->origedgemap, NULL, NULL); | 
					
						
							|  |  |  | 	BLI_ghash_free(kcd->origvertmap, NULL, NULL); | 
					
						
							|  |  |  | 	BLI_ghash_free(kcd->kedgefacemap, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	BLI_ghash_free(kcd->facetrimap, NULL, NULL); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	BKE_bmbvh_free(kcd->bmbvh); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	BLI_memarena_free(kcd->arena); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* tag for redraw */ | 
					
						
							|  |  |  | 	ED_region_tag_redraw(kcd->ar); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-18 12:54:23 +00:00
										 |  |  | 	if (kcd->cagecos) | 
					
						
							| 
									
										
										
										
											2013-04-18 15:09:30 +00:00
										 |  |  | 		MEM_freeN((void *)kcd->cagecos); | 
					
						
							| 
									
										
										
										
											2011-10-18 12:54:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-26 04:41:27 +00:00
										 |  |  | 	if (kcd->linehits) | 
					
						
							|  |  |  | 		MEM_freeN(kcd->linehits); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* destroy kcd itself */ | 
					
						
							|  |  |  | 	MEM_freeN(kcd); | 
					
						
							| 
									
										
										
										
											2013-03-14 13:58:56 +00:00
										 |  |  | } | 
					
						
							|  |  |  | static void knifetool_exit(bContext *C, wmOperator *op) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	KnifeTool_OpData *kcd = op->customdata; | 
					
						
							|  |  |  | 	knifetool_exit_ex(C, kcd); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	op->customdata = NULL; | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | static void knifetool_update_mval(KnifeTool_OpData *kcd, const float mval[2]) | 
					
						
							| 
									
										
										
										
											2012-04-18 16:55:15 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	knife_recalc_projmat(kcd); | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	copy_v2_v2(kcd->mval, mval); | 
					
						
							| 
									
										
										
										
											2012-04-18 16:55:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (knife_update_active(kcd)) { | 
					
						
							|  |  |  | 		ED_region_tag_redraw(kcd->ar); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | static void knifetool_update_mval_i(KnifeTool_OpData *kcd, const int mval_i[2]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	float mval[2] = {UNPACK2(mval_i)}; | 
					
						
							|  |  |  | 	knifetool_update_mval(kcd, mval); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | /* called when modal loop selection gets set up... */ | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | static void knifetool_init(bContext *C, KnifeTool_OpData *kcd, | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  |                            const bool only_select, const bool cut_through, const bool is_interactive) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	Scene *scene = CTX_data_scene(C); | 
					
						
							|  |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* assign the drawing handle for drawing preview line... */ | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 	kcd->ob = obedit; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	kcd->ar = CTX_wm_region(C); | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	em_setup_viewcontext(C, &kcd->vc); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	kcd->em = BKE_editmesh_from_object(kcd->ob); | 
					
						
							| 
									
										
										
										
											2011-11-16 12:38:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-12 10:51:45 +00:00
										 |  |  | 	BM_mesh_elem_index_ensure(kcd->em->bm, BM_VERT); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-18 04:24:18 +00:00
										 |  |  | 	kcd->cagecos = (const float (*)[3])BKE_editmesh_vertexCos_get(kcd->em, scene, NULL); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-18 18:20:21 +11:00
										 |  |  | 	kcd->bmbvh = BKE_bmbvh_new_from_editmesh(kcd->em, | 
					
						
							|  |  |  | 	                                         BMBVH_RETURN_ORIG | | 
					
						
							|  |  |  | 	                                         (only_select ? BMBVH_RESPECT_SELECT : BMBVH_RESPECT_HIDDEN), | 
					
						
							|  |  |  | 	                                         kcd->cagecos, false); | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-10 18:18:13 +00:00
										 |  |  | 	kcd->arena = BLI_memarena_new(MEM_SIZE_OPTIMAL(1 << 15), "knife"); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	kcd->vthresh = KMAXDIST - 1; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	kcd->ethresh = KMAXDIST; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	knife_recalc_projmat(kcd); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-01 22:59:18 +00:00
										 |  |  | 	kcd->refs = BLI_mempool_create(sizeof(Ref), 1, 2048, 0); | 
					
						
							|  |  |  | 	kcd->kverts = BLI_mempool_create(sizeof(KnifeVert), 1, 512, BLI_MEMPOOL_ALLOW_ITER); | 
					
						
							|  |  |  | 	kcd->kedges = BLI_mempool_create(sizeof(KnifeEdge), 1, 512, BLI_MEMPOOL_ALLOW_ITER); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-16 00:51:36 +00:00
										 |  |  | 	kcd->origedgemap = BLI_ghash_ptr_new("knife origedgemap"); | 
					
						
							|  |  |  | 	kcd->origvertmap = BLI_ghash_ptr_new("knife origvertmap"); | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	kcd->kedgefacemap = BLI_ghash_ptr_new("knife kedgefacemap"); | 
					
						
							|  |  |  | 	kcd->facetrimap = BLI_ghash_ptr_new("knife facetrimap"); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 	/* cut all the way through the mesh if use_occlude_geometry button not pushed */ | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	kcd->is_interactive = is_interactive; | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | 	kcd->cut_through = cut_through; | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 	kcd->only_select = only_select; | 
					
						
							| 
									
										
										
										
											2011-12-29 13:43:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 11:14:16 +00:00
										 |  |  | 	/* can't usefully select resulting edges in face mode */ | 
					
						
							|  |  |  | 	kcd->select_result = (kcd->em->selectmode != SCE_SELECT_FACE); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-03 02:41:12 +00:00
										 |  |  | 	knife_pos_data_clear(&kcd->curr); | 
					
						
							| 
									
										
										
										
											2012-03-12 12:45:55 +00:00
										 |  |  | 	knife_pos_data_clear(&kcd->prev); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	if (is_interactive) { | 
					
						
							|  |  |  | 		kcd->draw_handle = ED_region_draw_cb_activate(kcd->ar->type, knifetool_draw, kcd, REGION_DRAW_POST_VIEW); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		knife_init_colors(&kcd->colors); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-30 23:08:53 +00:00
										 |  |  | static void knifetool_cancel(bContext *C, wmOperator *op) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* this is just a wrapper around exit() */ | 
					
						
							|  |  |  | 	knifetool_exit(C, op); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 09:03:46 +00:00
										 |  |  | static int knifetool_invoke(bContext *C, wmOperator *op, const wmEvent *event) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | 	const bool only_select = RNA_boolean_get(op->ptr, "only_selected"); | 
					
						
							|  |  |  | 	const bool cut_through = !RNA_boolean_get(op->ptr, "use_occlude_geometry"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | 	KnifeTool_OpData *kcd; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-26 09:44:08 +11:00
										 |  |  | 	if (only_select) { | 
					
						
							|  |  |  | 		Object *obedit = CTX_data_edit_object(C); | 
					
						
							|  |  |  | 		BMEditMesh *em = BKE_editmesh_from_object(obedit); | 
					
						
							|  |  |  | 		if (em->bm->totfacesel == 0) { | 
					
						
							|  |  |  | 			BKE_report(op->reports, RPT_ERROR, "Selected faces required"); | 
					
						
							|  |  |  | 			return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	view3d_operator_needs_opengl(C); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 07:56:40 +00:00
										 |  |  | 	/* alloc new customdata */ | 
					
						
							|  |  |  | 	kcd = op->customdata = MEM_callocN(sizeof(KnifeTool_OpData), __func__); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 	knifetool_init(C, kcd, only_select, cut_through, true); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* add a modal handler for this operator - handles loop selection */ | 
					
						
							| 
									
										
										
										
											2013-09-06 22:34:29 +00:00
										 |  |  | 	WM_cursor_modal_set(CTX_wm_window(C), BC_KNIFECURSOR); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	WM_event_add_modal_handler(C, op); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 	knifetool_update_mval_i(kcd, event->mval); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 	knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2012-03-23 14:52:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	return OPERATOR_RUNNING_MODAL; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | enum { | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	KNF_MODAL_CANCEL = 1, | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	KNF_MODAL_CONFIRM, | 
					
						
							|  |  |  | 	KNF_MODAL_MIDPOINT_ON, | 
					
						
							|  |  |  | 	KNF_MODAL_MIDPOINT_OFF, | 
					
						
							|  |  |  | 	KNF_MODAL_NEW_CUT, | 
					
						
							|  |  |  | 	KNF_MODEL_IGNORE_SNAP_ON, | 
					
						
							|  |  |  | 	KNF_MODEL_IGNORE_SNAP_OFF, | 
					
						
							|  |  |  | 	KNF_MODAL_ADD_CUT, | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 	KNF_MODAL_ANGLE_SNAP_TOGGLE, | 
					
						
							| 
									
										
										
										
											2013-09-17 20:35:17 +00:00
										 |  |  | 	KNF_MODAL_CUT_THROUGH_TOGGLE, | 
					
						
							|  |  |  | 	KNF_MODAL_PANNING | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-07 15:10:21 +00:00
										 |  |  | wmKeyMap *knifetool_modal_keymap(wmKeyConfig *keyconf) | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	static EnumPropertyItem modal_items[] = { | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		{KNF_MODAL_CANCEL, "CANCEL", 0, "Cancel", ""}, | 
					
						
							|  |  |  | 		{KNF_MODAL_CONFIRM, "CONFIRM", 0, "Confirm", ""}, | 
					
						
							|  |  |  | 		{KNF_MODAL_MIDPOINT_ON, "SNAP_MIDPOINTS_ON", 0, "Snap To Midpoints On", ""}, | 
					
						
							|  |  |  | 		{KNF_MODAL_MIDPOINT_OFF, "SNAP_MIDPOINTS_OFF", 0, "Snap To Midpoints Off", ""}, | 
					
						
							|  |  |  | 		{KNF_MODEL_IGNORE_SNAP_ON, "IGNORE_SNAP_ON", 0, "Ignore Snapping On", ""}, | 
					
						
							|  |  |  | 		{KNF_MODEL_IGNORE_SNAP_OFF, "IGNORE_SNAP_OFF", 0, "Ignore Snapping Off", ""}, | 
					
						
							|  |  |  | 		{KNF_MODAL_ANGLE_SNAP_TOGGLE, "ANGLE_SNAP_TOGGLE", 0, "Toggle Angle Snapping", ""}, | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 		{KNF_MODAL_CUT_THROUGH_TOGGLE, "CUT_THROUGH_TOGGLE", 0, "Toggle Cut Through", ""}, | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		{KNF_MODAL_NEW_CUT, "NEW_CUT", 0, "End Current Cut", ""}, | 
					
						
							|  |  |  | 		{KNF_MODAL_ADD_CUT, "ADD_CUT", 0, "Add Cut", ""}, | 
					
						
							| 
									
										
										
										
											2013-09-17 20:35:17 +00:00
										 |  |  | 		{KNF_MODAL_PANNING, "PANNING", 0, "Panning", ""}, | 
					
						
							| 
									
										
										
										
											2012-07-29 00:20:28 +00:00
										 |  |  | 		{0, NULL, 0, NULL, NULL} | 
					
						
							|  |  |  | 	}; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	wmKeyMap *keymap = WM_modalkeymap_get(keyconf, "Knife Tool Modal Map"); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	/* this function is called for each spacetype, only needs to add map once */ | 
					
						
							| 
									
										
										
										
											2012-04-17 15:40:04 +00:00
										 |  |  | 	if (keymap && keymap->modal_items) | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		return NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	keymap = WM_modalkeymap_add(keyconf, "Knife Tool Modal Map", modal_items); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	/* items for modal map */ | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, ESCKEY, KM_PRESS, KM_ANY, 0, KNF_MODAL_CANCEL); | 
					
						
							| 
									
										
										
										
											2013-09-17 20:35:17 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, MIDDLEMOUSE, KM_ANY, KM_ANY, 0, KNF_MODAL_PANNING); | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, LEFTMOUSE, KM_PRESS, KM_ANY, 0, KNF_MODAL_ADD_CUT); | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, RIGHTMOUSE, KM_PRESS, KM_ANY, 0, KNF_MODAL_CANCEL); | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, RETKEY, KM_PRESS, KM_ANY, 0, KNF_MODAL_CONFIRM); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, PADENTER, KM_PRESS, KM_ANY, 0, KNF_MODAL_CONFIRM); | 
					
						
							| 
									
										
										
										
											2012-04-23 11:19:39 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, SPACEKEY, KM_PRESS, KM_ANY, 0, KNF_MODAL_CONFIRM); | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, EKEY, KM_PRESS, 0, 0, KNF_MODAL_NEW_CUT); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, LEFTCTRLKEY, KM_PRESS, KM_ANY, 0, KNF_MODAL_MIDPOINT_ON); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, LEFTCTRLKEY, KM_RELEASE, KM_ANY, 0, KNF_MODAL_MIDPOINT_OFF); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, RIGHTCTRLKEY, KM_PRESS, KM_ANY, 0, KNF_MODAL_MIDPOINT_ON); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, RIGHTCTRLKEY, KM_RELEASE, KM_ANY, 0, KNF_MODAL_MIDPOINT_OFF); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, LEFTSHIFTKEY, KM_PRESS, KM_ANY, 0, KNF_MODEL_IGNORE_SNAP_ON); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, LEFTSHIFTKEY, KM_RELEASE, KM_ANY, 0, KNF_MODEL_IGNORE_SNAP_OFF); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, RIGHTSHIFTKEY, KM_PRESS, KM_ANY, 0, KNF_MODEL_IGNORE_SNAP_ON); | 
					
						
							|  |  |  | 	WM_modalkeymap_add_item(keymap, RIGHTSHIFTKEY, KM_RELEASE, KM_ANY, 0, KNF_MODEL_IGNORE_SNAP_OFF); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, CKEY, KM_PRESS, 0, 0, KNF_MODAL_ANGLE_SNAP_TOGGLE); | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 	WM_modalkeymap_add_item(keymap, ZKEY, KM_PRESS, 0, 0, KNF_MODAL_CUT_THROUGH_TOGGLE); | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 	WM_modalkeymap_assign(keymap, "MESH_OT_knife_tool"); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	return keymap; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-13 09:03:46 +00:00
										 |  |  | static int knifetool_modal(bContext *C, wmOperator *op, const wmEvent *event) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-05 04:43:46 +00:00
										 |  |  | 	Object *obedit = CTX_data_edit_object(C); | 
					
						
							| 
									
										
										
										
											2012-04-20 12:19:09 +00:00
										 |  |  | 	KnifeTool_OpData *kcd = op->customdata; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 	bool do_refresh = false; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-16 05:59:48 +00:00
										 |  |  | 	if (!obedit || obedit->type != OB_MESH || BKE_editmesh_from_object(obedit) != kcd->em) { | 
					
						
							| 
									
										
										
										
											2011-05-12 18:46:21 +00:00
										 |  |  | 		knifetool_exit(C, op); | 
					
						
							| 
									
										
										
										
											2012-03-23 14:52:00 +00:00
										 |  |  | 		ED_area_headerprint(CTX_wm_area(C), NULL); | 
					
						
							| 
									
										
										
										
											2011-02-23 08:12:27 +00:00
										 |  |  | 		return OPERATOR_FINISHED; | 
					
						
							| 
									
										
										
										
											2011-05-12 18:46:21 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2011-02-23 08:12:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	view3d_operator_needs_opengl(C); | 
					
						
							| 
									
										
										
										
											2012-12-10 07:20:52 +00:00
										 |  |  | 	ED_view3d_init_mats_rv3d(obedit, kcd->vc.rv3d);  /* needed to initialize clipping */ | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	if (kcd->mode == MODE_PANNING) | 
					
						
							|  |  |  | 		kcd->mode = kcd->prevmode; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 	/* handle modal keymap */ | 
					
						
							|  |  |  | 	if (event->type == EVT_MODAL_MAP) { | 
					
						
							|  |  |  | 		switch (event->val) { | 
					
						
							|  |  |  | 			case KNF_MODAL_CANCEL: | 
					
						
							|  |  |  | 				/* finish */ | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				knifetool_exit(C, op); | 
					
						
							| 
									
										
										
										
											2012-03-23 14:52:00 +00:00
										 |  |  | 				ED_area_headerprint(CTX_wm_area(C), NULL); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				return OPERATOR_CANCELLED; | 
					
						
							|  |  |  | 			case KNF_MODAL_CONFIRM: | 
					
						
							|  |  |  | 				/* finish */ | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-12 15:22:54 +00:00
										 |  |  | 				knifetool_finish(op); | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				knifetool_exit(C, op); | 
					
						
							| 
									
										
										
										
											2012-03-23 14:52:00 +00:00
										 |  |  | 				ED_area_headerprint(CTX_wm_area(C), NULL); | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				return OPERATOR_FINISHED; | 
					
						
							|  |  |  | 			case KNF_MODAL_MIDPOINT_ON: | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				kcd->snap_midpoints = true; | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				knife_recalc_projmat(kcd); | 
					
						
							|  |  |  | 				knife_update_active(kcd); | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 			case KNF_MODAL_MIDPOINT_OFF: | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				kcd->snap_midpoints = false; | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				knife_recalc_projmat(kcd); | 
					
						
							|  |  |  | 				knife_update_active(kcd); | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2011-08-30 01:59:33 +00:00
										 |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			case KNF_MODEL_IGNORE_SNAP_ON: | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				kcd->ignore_vert_snapping = kcd->ignore_edge_snapping = true; | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			case KNF_MODEL_IGNORE_SNAP_OFF: | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 				kcd->ignore_vert_snapping = kcd->ignore_edge_snapping = false; | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 			case KNF_MODAL_ANGLE_SNAP_TOGGLE: | 
					
						
							|  |  |  | 				kcd->angle_snapping = !kcd->angle_snapping; | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2012-01-04 13:43:40 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 			case KNF_MODAL_CUT_THROUGH_TOGGLE: | 
					
						
							|  |  |  | 				kcd->cut_through = !kcd->cut_through; | 
					
						
							| 
									
										
										
										
											2012-04-18 19:59:27 +00:00
										 |  |  | 				knife_update_header(C, kcd); | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 				do_refresh = true; | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 			case KNF_MODAL_NEW_CUT: | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							| 
									
										
										
										
											2011-05-09 20:43:05 +00:00
										 |  |  | 				knife_finish_cut(kcd); | 
					
						
							|  |  |  | 				kcd->mode = MODE_IDLE; | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 			case KNF_MODAL_ADD_CUT: | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 				knife_recalc_projmat(kcd); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				if (kcd->mode == MODE_DRAGGING) { | 
					
						
							|  |  |  | 					knife_add_cut(kcd); | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 				} | 
					
						
							|  |  |  | 				else if (kcd->mode != MODE_PANNING) { | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 					knife_start_cut(kcd); | 
					
						
							|  |  |  | 					kcd->mode = MODE_DRAGGING; | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2013-09-17 20:35:17 +00:00
										 |  |  | 			case KNF_MODAL_PANNING: | 
					
						
							|  |  |  | 				if (event->val != KM_RELEASE) { | 
					
						
							|  |  |  | 					if (kcd->mode != MODE_PANNING) { | 
					
						
							|  |  |  | 						kcd->prevmode = kcd->mode; | 
					
						
							|  |  |  | 						kcd->mode = MODE_PANNING; | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					kcd->mode = kcd->prevmode; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				ED_region_tag_redraw(kcd->ar); | 
					
						
							|  |  |  | 				return OPERATOR_PASS_THROUGH; | 
					
						
							|  |  |  | 				break; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	else { /* non-modal-mapped events */ | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 		switch (event->type) { | 
					
						
							| 
									
										
										
										
											2013-09-17 15:20:44 +00:00
										 |  |  | 			case MOUSEPAN: | 
					
						
							|  |  |  | 			case MOUSEZOOM: | 
					
						
							|  |  |  | 			case MOUSEROTATE: | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 			case WHEELUPMOUSE: | 
					
						
							|  |  |  | 			case WHEELDOWNMOUSE: | 
					
						
							|  |  |  | 				return OPERATOR_PASS_THROUGH; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 			case MOUSEMOVE: /* mouse moved somewhere to select another loop */ | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				if (kcd->mode != MODE_PANNING) { | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 					knifetool_update_mval_i(kcd, event->mval); | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-09 21:38:55 +00:00
										 |  |  | 				break; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-10 05:07:46 +00:00
										 |  |  | 	if (do_refresh) { | 
					
						
							|  |  |  | 		/* we don't really need to update mval,
 | 
					
						
							|  |  |  | 		 * but this happens to be the best way to refresh at the moment */ | 
					
						
							| 
									
										
										
										
											2013-03-14 14:46:59 +00:00
										 |  |  | 		knifetool_update_mval_i(kcd, event->mval); | 
					
						
							| 
									
										
										
										
											2012-12-10 05:07:46 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* keep going until the user confirms */ | 
					
						
							| 
									
										
										
										
											2011-04-11 01:38:20 +00:00
										 |  |  | 	return OPERATOR_RUNNING_MODAL; | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | void MESH_OT_knife_tool(wmOperatorType *ot) | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	/* description */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->name = "Knife Topology Tool"; | 
					
						
							| 
									
										
										
										
											2012-04-20 10:52:13 +00:00
										 |  |  | 	ot->idname = "MESH_OT_knife_tool"; | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->description = "Cut new topology"; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* callbacks */ | 
					
						
							| 
									
										
										
										
											2012-02-10 18:09:19 +00:00
										 |  |  | 	ot->invoke = knifetool_invoke; | 
					
						
							|  |  |  | 	ot->modal = knifetool_modal; | 
					
						
							|  |  |  | 	ot->cancel = knifetool_cancel; | 
					
						
							|  |  |  | 	ot->poll = ED_operator_editmesh_view3d; | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | 	/* flags */ | 
					
						
							| 
									
										
										
										
											2012-03-12 23:56:11 +00:00
										 |  |  | 	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO | OPTYPE_BLOCKING; | 
					
						
							| 
									
										
										
										
											2012-04-18 18:20:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-19 23:17:44 +00:00
										 |  |  | 	RNA_def_boolean(ot->srna, "use_occlude_geometry", true, "Occlude Geometry", "Only cut the front most geometry"); | 
					
						
							|  |  |  | 	RNA_def_boolean(ot->srna, "only_selected", false, "Only Selected", "Only cut selected geometry"); | 
					
						
							| 
									
										
										
										
											2010-09-25 01:54:58 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* -------------------------------------------------------------------- */ | 
					
						
							|  |  |  | /* Knife tool as a utility function
 | 
					
						
							|  |  |  |  * that can be used for internal slicing operations */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | /**
 | 
					
						
							|  |  |  |  * Return a point inside the face. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * tessellation here seems way overkill, | 
					
						
							|  |  |  |  * but without this its very hard to know of a point is inside the face | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void edvm_mesh_knife_face_point(BMFace *f, float r_cent[3]) | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2013-11-30 22:05:58 +11:00
										 |  |  | 	const int tottri = f->len - 2; | 
					
						
							|  |  |  | 	BMLoop **loops = BLI_array_alloca(loops, f->len); | 
					
						
							|  |  |  | 	unsigned int  (*index)[3] = BLI_array_alloca(index, tottri); | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 	int j; | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 	float const *best_co[3] = {NULL}; | 
					
						
							| 
									
										
										
										
											2013-11-05 16:24:00 +00:00
										 |  |  | 	float best_area  = -1.0f; | 
					
						
							| 
									
										
										
										
											2013-03-16 14:18:32 +00:00
										 |  |  | 	bool ok = false; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-30 22:05:58 +11:00
										 |  |  | 	BM_face_calc_tessellation(f, loops, index); | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 	for (j = 0; j < tottri; j++) { | 
					
						
							|  |  |  | 		const float *p1 = loops[index[j][0]]->v->co; | 
					
						
							|  |  |  | 		const float *p2 = loops[index[j][1]]->v->co; | 
					
						
							|  |  |  | 		const float *p3 = loops[index[j][2]]->v->co; | 
					
						
							|  |  |  | 		float area; | 
					
						
							| 
									
										
										
										
											2013-03-15 14:43:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 		float cross[3]; | 
					
						
							|  |  |  | 		cross_v3_v3v3(cross, p2, p3); | 
					
						
							|  |  |  | 		area = fabsf(dot_v3v3(p1, cross)); | 
					
						
							|  |  |  | 		if (area > best_area) { | 
					
						
							|  |  |  | 			best_co[0] = p1; | 
					
						
							|  |  |  | 			best_co[1] = p2; | 
					
						
							|  |  |  | 			best_co[2] = p3; | 
					
						
							|  |  |  | 			best_area = area; | 
					
						
							| 
									
										
										
										
											2013-03-16 14:18:32 +00:00
										 |  |  | 			ok = true; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-16 14:18:32 +00:00
										 |  |  | 	if (ok) { | 
					
						
							|  |  |  | 		mid_v3_v3v3v3(r_cent, best_co[0], best_co[1], best_co[2]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	else { | 
					
						
							|  |  |  | 		mid_v3_v3v3v3(r_cent, loops[0]->v->co, loops[1]->v->co, loops[2]->v->co); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static bool edbm_mesh_knife_face_isect(ARegion *ar, LinkNode *polys, BMFace *f, float projmat[4][4]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	float cent_ss[2]; | 
					
						
							|  |  |  | 	float cent[3]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	edvm_mesh_knife_face_point(f, cent); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	ED_view3d_project_float_v2_m4(ar, cent, cent_ss, projmat); | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* check */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		LinkNode *p = polys; | 
					
						
							|  |  |  | 		int isect = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (p) { | 
					
						
							|  |  |  | 			const float (*mval_fl)[2] = p->link; | 
					
						
							|  |  |  | 			const int mval_tot = MEM_allocN_len(mval_fl) / sizeof(*mval_fl); | 
					
						
							| 
									
										
										
										
											2013-10-04 10:48:24 +00:00
										 |  |  | 			isect += (int)isect_point_poly_v2(cent_ss, mval_fl, mval_tot - 1, false); | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 			p = p->next; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (isect % 2) { | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return false; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * \param use_tag  When set, tag all faces inside the polylines. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2013-11-01 11:42:11 +00:00
										 |  |  | void EDBM_mesh_knife(bContext *C, LinkNode *polys, bool use_tag, bool cut_through) | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	KnifeTool_OpData *kcd; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	view3d_operator_needs_opengl(C); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* init */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		const bool only_select = false; | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		const bool is_interactive = false;  /* can enable for testing */ | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		kcd = MEM_callocN(sizeof(KnifeTool_OpData), __func__); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 20:39:56 +00:00
										 |  |  | 		knifetool_init(C, kcd, only_select, cut_through, is_interactive); | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		kcd->ignore_edge_snapping = true; | 
					
						
							|  |  |  | 		kcd->ignore_vert_snapping = true; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (use_tag) { | 
					
						
							|  |  |  | 			BM_mesh_elem_hflag_enable_all(kcd->em->bm, BM_EDGE, BM_ELEM_TAG, false); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* execute */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		LinkNode *p = polys; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		knife_recalc_projmat(kcd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		while (p) { | 
					
						
							|  |  |  | 			const float (*mval_fl)[2] = p->link; | 
					
						
							|  |  |  | 			const int mval_tot = MEM_allocN_len(mval_fl) / sizeof(*mval_fl); | 
					
						
							|  |  |  | 			int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			for (i = 0; i < mval_tot; i++) { | 
					
						
							|  |  |  | 				knifetool_update_mval(kcd, mval_fl[i]); | 
					
						
							|  |  |  | 				if (i == 0) { | 
					
						
							|  |  |  | 					knife_start_cut(kcd); | 
					
						
							|  |  |  | 					kcd->mode = MODE_DRAGGING; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else { | 
					
						
							|  |  |  | 					knife_add_cut(kcd); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 			knife_finish_cut(kcd); | 
					
						
							|  |  |  | 			kcd->mode = MODE_IDLE; | 
					
						
							|  |  |  | 			p = p->next; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* finish */ | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		knifetool_finish_ex(kcd); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* tag faces inside! */ | 
					
						
							|  |  |  | 		if (use_tag) { | 
					
						
							|  |  |  | 			BMesh *bm = kcd->em->bm; | 
					
						
							|  |  |  | 			float projmat[4][4]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			BMEdge *e; | 
					
						
							|  |  |  | 			BMIter iter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			bool keep_search; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			ED_view3d_ob_project_mat_get(kcd->ar->regiondata, kcd->ob, projmat); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 			/* use face-loop tag to store if we have intersected */ | 
					
						
							|  |  |  | #define F_ISECT_IS_UNKNOWN(f)  BM_elem_flag_test(BM_FACE_FIRST_LOOP(f), BM_ELEM_TAG)
 | 
					
						
							|  |  |  | #define F_ISECT_SET_UNKNOWN(f) BM_elem_flag_enable(BM_FACE_FIRST_LOOP(f), BM_ELEM_TAG)
 | 
					
						
							|  |  |  | #define F_ISECT_SET_OUTSIDE(f) BM_elem_flag_disable(BM_FACE_FIRST_LOOP(f), BM_ELEM_TAG)
 | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				BMFace *f; | 
					
						
							|  |  |  | 				BM_ITER_MESH (f, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							|  |  |  | 					F_ISECT_SET_UNKNOWN(f); | 
					
						
							|  |  |  | 					BM_elem_flag_disable(f, BM_ELEM_TAG); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 			/* tag all faces linked to cut edges */ | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 			BM_ITER_MESH (e, &iter, bm, BM_EDGES_OF_MESH) { | 
					
						
							|  |  |  | 				/* check are we tagged?, then we are an original face */ | 
					
						
							|  |  |  | 				if (BM_elem_flag_test(e, BM_ELEM_TAG) == false) { | 
					
						
							|  |  |  | 					BMFace *f; | 
					
						
							|  |  |  | 					BMIter fiter; | 
					
						
							|  |  |  | 					BM_ITER_ELEM (f, &fiter, e, BM_FACES_OF_EDGE) { | 
					
						
							|  |  |  | 						if (edbm_mesh_knife_face_isect(kcd->ar, polys, f, projmat)) { | 
					
						
							|  |  |  | 							BM_elem_flag_enable(f, BM_ELEM_TAG); | 
					
						
							|  |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 			/* expand tags for faces which are not cut, but are inside the polys */ | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 			do { | 
					
						
							|  |  |  | 				BMFace *f; | 
					
						
							|  |  |  | 				keep_search = false; | 
					
						
							|  |  |  | 				BM_ITER_MESH (f, &iter, bm, BM_FACES_OF_MESH) { | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 					if (BM_elem_flag_test(f, BM_ELEM_TAG) == false && (F_ISECT_IS_UNKNOWN(f))) { | 
					
						
							|  |  |  | 						/* am I connected to a tagged face via an un-tagged edge (ie, not across a cut) */ | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 						BMLoop *l_first = BM_FACE_FIRST_LOOP(f); | 
					
						
							|  |  |  | 						BMLoop *l_iter = l_first; | 
					
						
							| 
									
										
										
										
											2013-03-15 19:00:21 +00:00
										 |  |  | 						bool found = false; | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						do { | 
					
						
							| 
									
										
										
										
											2013-03-15 14:43:09 +00:00
										 |  |  | 							if (BM_elem_flag_test(l_iter->e, BM_ELEM_TAG) != false) { | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 								/* now check if the adjacent faces is tagged */ | 
					
						
							| 
									
										
										
										
											2013-03-15 14:43:09 +00:00
										 |  |  | 								BMLoop *l_radial_iter = l_iter->radial_next; | 
					
						
							|  |  |  | 								if (l_radial_iter != l_iter) { | 
					
						
							|  |  |  | 									do { | 
					
						
							|  |  |  | 										if (BM_elem_flag_test(l_radial_iter->f, BM_ELEM_TAG)) { | 
					
						
							|  |  |  | 											found = true; | 
					
						
							|  |  |  | 										} | 
					
						
							|  |  |  | 									} while ((l_radial_iter = l_radial_iter->radial_next) != l_iter && (found == false)); | 
					
						
							|  |  |  | 								} | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-03-15 14:43:09 +00:00
										 |  |  | 						} while ((l_iter = l_iter->next) != l_first && (found == false)); | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 						if (found) { | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 							if (edbm_mesh_knife_face_isect(kcd->ar, polys, f, projmat)) { | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 								BM_elem_flag_enable(f, BM_ELEM_TAG); | 
					
						
							|  |  |  | 								keep_search = true; | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 							else { | 
					
						
							|  |  |  | 								/* don't loose time on this face again, set it as outside */ | 
					
						
							|  |  |  | 								F_ISECT_SET_OUTSIDE(f); | 
					
						
							|  |  |  | 							} | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} while (keep_search); | 
					
						
							| 
									
										
										
										
											2013-03-15 19:38:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #undef F_ISECT_IS_UNKNOWN
 | 
					
						
							|  |  |  | #undef F_ISECT_SET_UNKNOWN
 | 
					
						
							|  |  |  | #undef F_ISECT_SET_OUTSIDE
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-03-15 13:06:31 +00:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		knifetool_exit_ex(C, kcd); | 
					
						
							|  |  |  | 		kcd = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |