MCPcopy Index your code
hub / github.com/endbasic/endbasic / set_pixel

Method set_pixel

std/src/console/drawing.rs:474–476  ·  view source on GitHub ↗
(&mut self, xy: PixelsXY, color: Option<u8>)

Source from the content-addressed store, hash-verified

472
473 impl RecordingRasops {
474 pub(crate) fn set_pixel(&mut self, xy: PixelsXY, color: Option<u8>) {
475 self.pixels.insert(xy, color);
476 }
477 }
478
479 impl RasterOps for RecordingRasops {

Calls 1

insertMethod · 0.45