mirror of
https://github.com/lxsang/Diya-API.git
synced 2024-12-27 03:48:21 +01:00
17 lines
307 B
Smalltalk
17 lines
307 B
Smalltalk
Extension { #name : #Color }
|
|
|
|
{ #category : #'*Diya' }
|
|
Color >> as4bytesRGB [
|
|
^{
|
|
(self red* 255) asInteger.
|
|
(self green * 255) asInteger.
|
|
(self blue*255) asInteger.
|
|
(self alpha* 255) asInteger
|
|
}
|
|
]
|
|
|
|
{ #category : #'*Diya' }
|
|
Color >> asGL4FArray [
|
|
^{self red. self green. self blue. self alpha }
|
|
]
|