staticGetNormal static method
Implementation
static Vector3 staticGetNormal(Vector3 a, Vector3 b, Vector3 c, Vector3 target) {
target.sub2(c, b);
_v0.sub2(a, b);
target.cross(_v0);
final targetLengthSq = target.length2;
if (targetLengthSq > 0) {
// print(" targer: ${target.toJson()} getNormal scale: ${1 / math.sqrt( targetLengthSq )} ");
return target.scale(1 / math.sqrt(targetLengthSq));
}
return target.setValues(0, 0, 0);
}