public static LVector3 Transform(LVector3 point, LVector3 forward, LVector3 trans, LVector3 scale) { LVector3 up = LVector3.up; LVector3 vInt = Cross(LVector3.up, forward); return(LMath.Transform(ref point, ref vInt, ref up, ref forward, ref trans, ref scale)); }