1
0
mirror of https://github.com/lxsang/Diya-API.git synced 2024-12-27 20:08:22 +01:00
Diya-API/Diya/Color.extension.st

17 lines
307 B
Smalltalk
Raw Normal View History

2022-03-06 18:33:10 +01:00
Extension { #name : #Color }
2022-03-08 23:30:01 +01:00
{ #category : #'*Diya' }
Color >> as4bytesRGB [
^{
(self red* 255) asInteger.
(self green * 255) asInteger.
(self blue*255) asInteger.
(self alpha* 255) asInteger
}
]
2022-03-06 18:33:10 +01:00
{ #category : #'*Diya' }
Color >> asGL4FArray [
^{self red. self green. self blue. self alpha }
]