Learn R Programming

AmigaFFH (version 0.4.3)

AmigaBasicShape: The S3 AmigaBasicShape class

Description

A class that represents the file format used by Amiga Basic to store bitmap graphics: blitter objects and sprites.

Arguments

Author

Pepijn de Vries

Details

Amiga Basic used a specific format to store bitmap images that could be displayed using Basic code. Both sprites and blitter objects can be stored and used. This class is used to represent such files.

See Also

Other AmigaBasicShape.operations: rasterToAmigaBasicShape(), read.AmigaBasicShape(), write.AmigaBasicShape()

Examples

Run this code
if (FALSE) {
ball   <- read.AmigaBasicShape(system.file("ball.shp", package = "AmigaFFH"))
r_logo <- read.AmigaBasicShape(system.file("r_logo.shp", package = "AmigaFFH"))

plot(ball)
plot(r_logo)
}

Run the code above in your browser using DataLab