-
Notifications
You must be signed in to change notification settings - Fork 233
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
69 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,3 @@ Alpha Nodes | |
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
Overlap Polygons | ||
================= | ||
|
||
Functionality | ||
------------- | ||
|
||
For every polygon of one object search intersection at other object. | ||
Epsilon makes it harder to find intersaction. Based on BVHtree ``mathutils.bvhtree``. | ||
|
||
Inputs | ||
------ | ||
|
||
+--------+--------------+--------------------------+ | ||
| Mode | Input Name | type | | ||
+========+==============+==========================+ | ||
| All | Vert(A) | vertices | | ||
+--------+--------------+--------------------------+ | ||
| All | Poly(A) | polygons | | ||
+--------+--------------+--------------------------+ | ||
| All | Vert(B) | vertices | | ||
+--------+--------------+--------------------------+ | ||
| All | Poly(B) | polygons | | ||
+--------+--------------+--------------------------+ | ||
|
||
|
||
Parameters | ||
---------- | ||
|
||
+---------------+-----------------------------------------------------------------------------------------+ | ||
| Mode | Description | | ||
+===============+=========================================================================================+ | ||
| all triangles | Boolean to work with triangles makes it faster to calculate | | ||
+---------------+-----------------------------------------------------------------------------------------+ | ||
| epsilon | float threashold for cut weak results | | ||
+---------------+-----------------------------------------------------------------------------------------+ | ||
|
||
|
||
Outputs | ||
------- | ||
|
||
|
||
+--------+-------------------+--------------------------+ | ||
| Mode | Input Name | type | | ||
+========+===================+==========================+ | ||
| All | PolyIndex(A) | indices | | ||
+--------+-------------------+--------------------------+ | ||
| All | PolyIndex(B) | indices | | ||
+--------+-------------------+--------------------------+ | ||
| All | OverlapPoly(A) | polygons | | ||
+--------+-------------------+--------------------------+ | ||
| All | OverlapPoly(B) | polygons | | ||
+--------+-------------------+--------------------------+ | ||
|
||
|
||
Examples | ||
-------- | ||
|
||
|
||
.. image:: https://user-images.githubusercontent.com/5783432/30777862-8d369f36-a0cd-11e7-8c8e-a72e7aa8ee7f.png | ||
https://github.com/nortikin/sverchok/files/1326934/bvhtree-overlap_2017_09_23_23_07.zip | ||
|
||
|
||
Notes | ||
----- | ||
|
||
pass | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters