Example #1
0
 public Vector3 CalculateNormalWithPointsCollection(Vector3[] points)
 {
     return(PolyMath.Normal(points));
 }
Example #2
0
 public Vector3 TestMathNormalWithThreePoints(Vector3 v0, Vector3 v1, Vector3 v2)
 {
     return(PolyMath.Normal(v0, v1, v2));
 }