1
0
mirror of https://github.com/lxsang/Diya-API.git synced 2024-12-26 19:38:22 +01:00
Diya-API/Diya/Point.extension.st

12 lines
178 B
Smalltalk
Raw Normal View History

Extension { #name : #Point }
2022-03-19 02:18:29 +01:00
{ #category : #'*Diya' }
Point >> asArray3F [
^ self asArray3F: 1.0
]
{ #category : #'*Diya' }
Point >> asArray3F: z [
^ { self x. self y. z }
]