Method PolygonInPolygon
PolygonInPolygon(List<Vector3>, List<Vector3>)
Determines if one polygon lies completely inside another coplanar polygon.
Declaration
public static bool PolygonInPolygon(List<Vector3> polygonA, List<Vector3> polygonB)
Parameters
| Type | Name | Description |
|---|---|---|
| List<Vector3> | polygonA | The polygon to test for lying inside |
| List<Vector3> | polygonB | The polygon to test for containing |
Returns
| Type | Description |
|---|---|
| bool | True if |