SA.FullBodyIK.Scale C# (CSharp) Method

Scale() public static method

public static Scale ( Vector3 lhs, Vector3 rhs ) : Vector3
lhs Vector3
rhs Vector3
return Vector3
		public static Vector3 Scale( Vector3 lhs, Vector3 rhs )
		{
			return new Vector3( lhs.x * rhs.x, lhs.y * rhs.y, lhs.z * rhs.z );
		}
FullBodyIK