Example #1
0
func (t *Transform) Compose(o *Transform) {

	C.al_compose_transform((*C.ALLEGRO_TRANSFORM)(t), (*C.ALLEGRO_TRANSFORM)(o))

}
Example #2
0
func (t *Transform) Compose(other *Transform) {
	C.al_compose_transform((*C.ALLEGRO_TRANSFORM)(unsafe.Pointer(t)), (*C.ALLEGRO_TRANSFORM)(unsafe.Pointer(other)))
}