cipherdogs-logo-lib 0.1.0

Library CipherDogs logo for the operating system
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 50.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 238.52 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 17s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • CipherDogs/cipherdogs-logo-lib
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • deadblackclover

cipherdogs-logo-lib

crates.io docs.rs

Library CipherDogs logo for the operating system

cipherdogs

Usage

use vga::colors::Color16;
use vga::writers::{Graphics640x480x16, GraphicsWriter};
use vga_figures::figures2d::Figures2D;

use cipherdogs_logo_lib;

let mode = Graphics640x480x16::new();
mode.set_mode();
mode.clear_screen(Color16::Black);

let figures = Figures2D::new(mode);

cipherdogs_logo_lib::draw(figures, Color16::White);