Math Lib: rename fill_*, to copy_*
matching convention for fixed length api, eg: copy_v3_fl
This commit is contained in:
		@@ -126,7 +126,7 @@ LinkNode *BM_mesh_calc_path_vert(
 | 
			
		||||
	verts_prev = MEM_callocN(sizeof(*verts_prev) * totvert, __func__);
 | 
			
		||||
	cost = MEM_mallocN(sizeof(*cost) * totvert, __func__);
 | 
			
		||||
 | 
			
		||||
	fill_vn_fl(cost, totvert, 1e20f);
 | 
			
		||||
	copy_vn_fl(cost, totvert, 1e20f);
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
	 * Arrays are now filled as follows:
 | 
			
		||||
@@ -252,7 +252,7 @@ LinkNode *BM_mesh_calc_path_edge(
 | 
			
		||||
	edges_prev = MEM_callocN(sizeof(*edges_prev) * totedge, "SeamPathPrevious");
 | 
			
		||||
	cost = MEM_mallocN(sizeof(*cost) * totedge, "SeamPathCost");
 | 
			
		||||
 | 
			
		||||
	fill_vn_fl(cost, totedge, 1e20f);
 | 
			
		||||
	copy_vn_fl(cost, totedge, 1e20f);
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
	 * Arrays are now filled as follows:
 | 
			
		||||
@@ -378,7 +378,7 @@ LinkNode *BM_mesh_calc_path_face(
 | 
			
		||||
	faces_prev = MEM_callocN(sizeof(*faces_prev) * totface, __func__);
 | 
			
		||||
	cost = MEM_mallocN(sizeof(*cost) * totface, __func__);
 | 
			
		||||
 | 
			
		||||
	fill_vn_fl(cost, totface, 1e20f);
 | 
			
		||||
	copy_vn_fl(cost, totface, 1e20f);
 | 
			
		||||
 | 
			
		||||
	/*
 | 
			
		||||
	 * Arrays are now filled as follows:
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user