// Moves the current coordinate system origin to the specified coordinate. func (self *Canvas) Translate(x float64, y float64) { C.DrawTranslate(self.drawing, C.double(x), C.double(y)) }
// Moves the current coordinate system origin to the specified coordinate. func (cv Canvas) Translate(x float64, y float64) { C.DrawTranslate(cv.drawing, C.double(x), C.double(y)) }
// Applies a translation to the current coordinate system which moves the // coordinate system origin to the specified coordinate. // // x, y: new x, y ordinate for coordinate system origin func (dw *DrawingWand) Translate(x, y float64) { C.DrawTranslate(dw.dw, C.double(x), C.double(y)) }