本文整理汇总了C#中Microsoft.Xna.Framework.Vector2.ToVector3方法的典型用法代码示例。如果您正苦于以下问题:C# Vector2.ToVector3方法的具体用法?C# Vector2.ToVector3怎么用?C# Vector2.ToVector3使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Xna.Framework.Vector2
的用法示例。
在下文中一共展示了Vector2.ToVector3方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CalculateBlocks
private void CalculateBlocks()
{
var leftTop = new Vector2( this._location.X - this._width / 2.0f, this._location.Y - this._heigth / 2.0f );
var rightTop = leftTop + new Vector2( this._width, 0 );
var rightBottom = leftTop + new Vector2( this._width, this._heigth );
var leftBottom = leftTop + new Vector2( 0, this._heigth );
this._blockses = new[]
{
new VertexPositionTexture( leftTop.ToVector3(), this._quadrangle.LeftTop ),
new VertexPositionTexture( rightTop.ToVector3(), this._quadrangle.RightTop ),
new VertexPositionTexture( rightBottom.ToVector3(), this._quadrangle.RightBottom ),
new VertexPositionTexture( leftBottom.ToVector3(), this._quadrangle.LeftBottom )
};
}
示例2: Translate
public void Translate( IControl control, Vector2 translationVector )
{
if ( translationVector.Equal( Vector2.Zero, Constans.Epsilon ) )
{
return;
}
var translationMatrix = Matrix.CreateTranslation( translationVector.ToVector3() );
if ( this._selectedControls.Contains( control ) )
{
this._selectedControls.ForEach( s => s.TranslateWithoutNotification( translationMatrix ) );
this._selectedControls.ForEach( s => s.Invalidate() );
}
else
{
control.Translate( translationMatrix );
}
}
示例3: SetObjectPosition
/// <summary>
/// Before an object is rendered, call this method with the object coordinates in the world.
/// It updates the World matrix accordingly.
/// </summary>
/// <param name="position">Position of the object (in the world)</param>
public void SetObjectPosition(Vector2 position)
{
World = Matrix.CreateTranslation(position.ToVector3());
}