TODO
(xCenter float64, yCenter float64, x float64, y float64)
| 371 | |
| 372 | // TODO |
| 373 | func (m *DrawMatrix) Scale(xCenter float64, yCenter float64, x float64, y float64) { |
| 374 | cm := m.toLibui() |
| 375 | C.uiDrawMatrixScale(cm, |
| 376 | C.double(xCenter), C.double(yCenter), |
| 377 | C.double(x), C.double(y)) |
| 378 | m.fromLibui(cm) |
| 379 | } |
| 380 | |
| 381 | // TODO |
| 382 | func (m *DrawMatrix) Rotate(x float64, y float64, amount float64) { |