Matrix.Translate(Double, Double) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在這個 Matrix 結構之後加上所指定位移的轉換。
public:
void Translate(double offsetX, double offsetY);
public void Translate (double offsetX, double offsetY);
member this.Translate : double * double -> unit
Public Sub Translate (offsetX As Double, offsetY As Double)
參數
範例
下列範例示範如何將翻譯附加至 Matrix 結構。
private Matrix translateExample()
{
Matrix myMatrix = new Matrix(5, 10, 15, 20, 25, 30);
myMatrix.Translate(5, 10);
// myMatrix is equal to (5, 10, 15, 20, 30, 40).
return myMatrix;
}