getUV method

dynamic getUV(
  1. Vector3 point,
  2. Vector2 uv1,
  3. Vector2 uv2,
  4. Vector2 uv3,
  5. Vector target,
)

Implementation

dynamic getUV(Vector3 point, Vector2 uv1, Vector2 uv2, Vector2 uv3, Vector target) {
  return Triangle.staticGetUV(point, a, b, c, uv1, uv2, uv3, target);
}