getBarycoord method

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

Implementation

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