Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Compose = copyFunc(func(g emu.Glyph) bool { return g.Char == ' ' && g.BG == emu.DefaultBG })
Compose is like Copy does not overwrite a cell in dst if a cell in src is empty and has the default background.
View Source
var Copy = copyFunc(func(g emu.Glyph) bool {
return g.Transparent()
})
Copy the cell contents from src to dst starting at [dstRow, dstCol], TODO(cfoust): 07/25/24 this is misleading, Copy should not have this transparency behavior, it should be in another function
View Source
var CopyRaw = copyFunc(func(g emu.Glyph) bool { return false })
CopyRaw copies all cells regardless of transparency.
Functions ¶
This section is empty.
Types ¶
Click to show internal directories.
Click to hide internal directories.