Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormano-wii <germano.costa@ig.com.br>2019-09-12 19:28:53 +0300
committermano-wii <germano.costa@ig.com.br>2019-09-12 19:32:44 +0300
commitca5e1615a10fd8c31bb0367332cd5f3a1e8bd9aa (patch)
treedb7cb0ad2a5cc6fe9650db18d933ef7d94fe136e /source/blender/blenlib/BLI_math_geom.h
parentf9ef59ccc80d5bd3e0ad3aad74e535fc08747e5c (diff)
BMesh: New tool `BM_mesh_intersect_edges`
Along with the new utility `BM_vert_weld_linked_wire_edges_into_linked_faces`
Diffstat (limited to 'source/blender/blenlib/BLI_math_geom.h')
-rw-r--r--source/blender/blenlib/BLI_math_geom.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_math_geom.h b/source/blender/blenlib/BLI_math_geom.h
index caecc0aebc2..87517ebe060 100644
--- a/source/blender/blenlib/BLI_math_geom.h
+++ b/source/blender/blenlib/BLI_math_geom.h
@@ -311,7 +311,13 @@ bool isect_line_line_strict_v3(const float v1[3],
const float v4[3],
float vi[3],
float *r_lambda);
-
+bool isect_ray_ray_epsilon_v3(const float ray_origin_a[3],
+ const float ray_direction_a[3],
+ const float ray_origin_b[3],
+ const float ray_direction_b[3],
+ const float epsilon,
+ float *r_lambda_a,
+ float *r_lambda_b);
bool isect_ray_ray_v3(const float ray_origin_a[3],
const float ray_direction_a[3],
const float ray_origin_b[3],