getBarycoord method

Vector3 getBarycoord(
  1. dynamic point,
  2. Vector3 target
)

Implementation

Vector3 getBarycoord(point, Vector3 target) {
  return Triangle.staticGetBarycoord(point, a, b, c, target);
}