public static Vector3 normalTo(this Vector3 THIS, Vector3 normalizedAxis) { Vector3 normal = THIS.getYForHorizontalAxis(normalizedAxis); if (normal.sqrMagnitude > 0.00001f) { return(normal.normalized()); } throw BadException.die(""); }
public static void fillMatrix4(this Quaternion q, Matrix4x4 target) { BadException.notImplemented(); }
public static void setTranslation(this Matrix4x4 from, Vector3 tr) { BadException.notImplemented(); }