getNormal method

Vector3 getNormal(
  1. Vector3 target
)

Implementation

Vector3 getNormal(Vector3 target) {
  return Triangle.staticGetNormal(a, b, c, target);
}