static_getUV static method
dynamic
static_getUV()
Implementation
static static_getUV(
point, Vector3 p1, Vector3 p2, Vector3 p3, uv1, uv2, uv3, target) {
static_getBarycoord(point, p1, p2, p3, _v3);
target.set(0.0, 0.0);
target.addScaledVector(uv1, _v3.x);
target.addScaledVector(uv2, _v3.y);
target.addScaledVector(uv3, _v3.z);
return target;
}