Cairo.Matrix.InitTranslate C# (CSharp) Method

InitTranslate() public method

public InitTranslate ( double tx, double ty ) : void
tx double
ty double
return void
        public void InitTranslate(double tx, double ty)
        {
            //this.Init (1, 0, 0, 1, tx, ty);
            NativeMethods.cairo_matrix_init_translate (this, tx, ty);
        }