Draw 8-bit Mario

Simple script to draw an 8-bit Mario on a figure using patches.
383 Downloads
Updated 19 Feb 2013

View License

function [ ] = mario( min_x, max_x, min_y, max_y )
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% MARIO This will draw an 8-bit version of mario in 12 x 16 resolution on the current figure. If no figure exists, will create a figure.

Inputs: min_x, max_x, min_y, max_y
% These coordinates specify the start and end coordinates to draw mario. Divides the vertical space into 16 chunks to determine the pixel size. Can change colors of specific parts such as overalls or mustache inside function.

Example Usage:
mario(0,12,0,16);
xlim([0 16]);

Cite As

Luis Piloto (2024). Draw 8-bit Mario (https://www.mathworks.com/matlabcentral/fileexchange/40334-draw-8-bit-mario), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2010a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Just for fun in Help Center and MATLAB Answers

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.1.0.0

Corrected example code in description. Thanks to Aurelien Queffurust for pointing it out!

1.0.0.0