1
0
mirror of https://github.com/lxsang/Diya-API.git synced 2024-12-28 12:28:21 +01:00
Diya-API/Diya/SDL_MouseMotionEvent.extension.st

12 lines
294 B
Smalltalk
Raw Normal View History

2022-03-19 02:18:29 +01:00
Extension { #name : #'SDL_MouseMotionEvent' }
{ #category : #'*Diya' }
2022-03-21 01:45:21 +01:00
SDL_MouseMotionEvent >> triggableOn: arg1 [
^ arg1 inner: self worldPosition
2022-03-19 02:18:29 +01:00
]
{ #category : #'*Diya' }
SDL_MouseMotionEvent >> worldPosition [
^ (self x) @ (DiyaRendererContext uniqueInstance resolution y - self y )
]