mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
9 lines
173 B
Smalltalk
9 lines
173 B
Smalltalk
Extension { #name : #Rectangle }
|
|
|
|
{ #category : #'*Diya' }
|
|
Rectangle >> applyTf: tf [
|
|
^ Rectangle
|
|
origin: (self origin applyTf: tf)
|
|
corner: (self corner applyTf: tf)
|
|
]
|