package Data
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
case class
Bitmap
(data: Array[Byte], cols: Int, rows: Int) extends Product with Serializable
Plain hi-resolution bitmap data of an image.
Plain hi-resolution bitmap data of an image.
- data
an array of bytes
- cols
bitmap width counted as a number of 8x8 character columns
- rows
bitmap height counted as a number of 8x8 character rows
-
case class
Screen
(data: Array[Byte], cols: Int, rows: Int) extends Product with Serializable
Screen colours data of an image.
Screen colours data of an image.
- data
an array of bytes (must equal "cols * rows" result)
- cols
screen width counted as a number of 8x8 character columns
- rows
screen height counted as a number of 8x8 character rows
Value Members
-
object
Bitmap
extends Serializable
Factory for org.c64.attitude.Afterimage.Mode.Data.Bitmap instances.
-
object
Screen
extends Serializable
Factory for org.c64.attitude.Afterimage.Mode.Data.Screen instances.