Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (17 loc) · 582 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 582 Bytes

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);