FarseerPhysics.Dynamics.Body.getWorldVector C# (CSharp) Метод

getWorldVector() публичный Метод

Get the world coordinates of a vector given the local coordinates. Note that the vector only takes the rotation into account, not the position.
public getWorldVector ( Vector2 &localVector ) : Vector2
localVector Vector2 A vector fixed in the body.
Результат Vector2
		public Vector2 getWorldVector( ref Vector2 localVector )
		{
			return MathUtils.mul( _xf.q, localVector );
		}