Matrix.Translate(Double, Double) 方法

定义

在此 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)

参数

offsetX
Double

Matrix 沿 x 轴的偏移量。

offsetY
Double

Matrix 沿 y 轴的偏移量。

示例

以下示例演示如何将转换追加到 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;
}

适用于

另请参阅