You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are using CMake, the public include directory is added to the :cmake:`ipc::toolkit` cmake target which means that any lib/bin that includes :cmake:`ipc::toolkit` as a dependency also adds those include directories too.
17
+
18
+
If you are not using CMake, the include path is ``src``.
19
+
20
+
Files are included with the prefix :cpp:`#include <ipc/...>` in C++ and :python:`import ipctk` in Python.
21
+
22
+
How do I determine which edges intersect?
23
+
-----------------------------------------
24
+
25
+
We do not provide an edge-edge intersection function in 3D, but you can approximate it by computing the distance between the two edges and checking if it is less than a threshold.
26
+
27
+
Inside any :cpp:`BroadPhase` classes, the function :cpp:`detect_edge_edge_candidates` determines which edges intersect based on their bounding boxes. You can then use :cpp:`edge_edge_distance` to check if they approximatly intersect by computing the distance.
28
+
29
+
How do I build the edge matrix from the face matrix?
0 commit comments