“From Code to Art: The Power of Creative Coding Tutorial” by echohuiecho
https://openprocessing.org/sketch/1966146
License CreativeCommons Attribution NonCommercial ShareAlike
https://creativecommons.org/licenses/by-nc-sa/3.0
{{filePath}}
{{width}} x {{height}}
Report Sketch
Oh, that naughty sketch! Please let us know what the issue is below.
Apply Template
Applying this template will reset your sketch and remove all your changes. Are you sure you would like to continue?
Report Sketch
Report Comment
Please confirm that you would like to report the comment below.
We will review your submission and take any actions necessary per our Community Guidelines. In addition to reporting this comment, you can also block the user to prevent any future interactions.
Please report comments only when necessary. Unnecessary or abusive use of this tool may result in your own account being suspended.
Are you sure you want to delete your sketch?
Any files uploaded will be deleted as well.
Forks of this sketch will become the forks of "Basic Geometry Tutorial".
Delete Comment?
This will also delete all the replies to this comment.
Delete this tab? Any code in it will be deleted as well.
Select a collection to submit your sketch
We Need Your Support
Since 2008, OpenProcessing has provided tools for creative coders to learn, create, and share over a million open source projects in a friendly environment.
Niche websites like ours need your continued support for future development and maintenance, while keeping it an ad-free platform that respects your data and privacy!
Please consider subscribing below to show your support with a "Plus" badge on your profile and get access to many other features!
A fork of Basic Geometry Tutorial by echohuiecho
CC Attribution NonCommercial ShareAlike
From Code to Art: The Power of Creative Coding Tutorial
xxxxxxxxxx
let fontRegular = "DMSans-Regular.ttf";
function preload() {
fontRegular = loadFont(fontRegular);
}
function setup() {
// Set up the canvas
createCanvas(400, 450);
// Set the background color to black
background('#000000');
// Disable drawing the outline of shapes
noStroke();
textSize(18);
textFont(fontRegular);
textAlign(CENTER, CENTER);
}
function draw() {
// Clear the background
background('#000000');
// First white rectangle at the top left
drawRectangle(0, 0, 95, 120, '#ffffff');
// White rectangle underneath the first rectangle
drawRectangle(0, 150, 95, 130, '#ffffff');
// Blue rectangle underneath the second
drawRectangle(0, 290, 95, 110, '#1356A2');
// Large red rectangle on the right side of the painting
drawRectangle(105, 0, 295, 280, '#D40920');
// White rectangle underneath the red rectangle
drawRectangle(105, 290, 250, 110, '#ffffff');
// Small white rectangle at the bottom right corner of the painting
drawRectangle(365, 290, 35, 50);
// Yellow rectangle at the bottom right corner of the painting
drawRectangle(365, 360, 35, 40, '#F7D842');
// display coordinates
fill(255, 255, 255);
text('position:' + int(mouseX) + '(x), ' + int(mouseY) + '(y)', width / 2, 425);
}
function drawRectangle(x, y, width, height, fillColor = null) {
if (fillColor) {
fill(fillColor);
}
rect(x, y, width, height);
}
See More Shortcuts
Please verify your email to comment
Verify Email