TODO
(x float64, y float64, amount float64)
| 380 | |
| 381 | // TODO |
| 382 | func (m *DrawMatrix) Rotate(x float64, y float64, amount float64) { |
| 383 | cm := m.toLibui() |
| 384 | C.uiDrawMatrixRotate(cm, C.double(x), C.double(y), C.double(amount)) |
| 385 | m.fromLibui(cm) |
| 386 | } |
| 387 | |
| 388 | // TODO |
| 389 | func (m *DrawMatrix) Skew(x float64, y float64, xamount float64, yamount float64) { |