So what is the difference between
Vector3 osman = new Vector3(15, 30, 45);
transform.Rotate(osman*Time.deltaTime);
and
transform.Rotate(new Vector3(15,30,45)*Time.deltaTime); ?? Performance issues? in functionality, they both work, but is there an advantage to using one of them?