xxxxxxxxxx
95
const SHAKES = `The Project Gutenberg eBook of The Complete Works of William Shakespeare
This ebook is for the use of anyone anywhere in the United States and
most other parts of the world at no cost and with almost no restrictions
whatsoever. You may copy it, give it away or re-use it under the terms
of the Project Gutenberg License included with this ebook or online
at www.gutenberg.org. If you are not located in the United States,
you will have to check the laws of the country where you are located
before using this eBook.
Title: The Complete Works of William Shakespeare
Author: William Shakespeare
Release date: January 1, 1994 [eBook #100]
Most recently updated: January 18, 2024
Language: English
*** START OF THE PROJECT GUTENBERG EBOOK THE COMPLETE WORKS OF WILLIAM SHAKESPEARE ***
•The Complete Works of William Shakespeare
by William Shakespeare`;
function drawDebug(x, y, radius) {
drawingContext.setLineDash([5, 3]);
noFill()
stroke('grey')
circle(x, y, 2*radius)
fill('grey')
circle(x, y, 4)
line(x, y, x, y - radius)
drawingContext.setLineDash([]);
}
function rotateText(x, y, radius, txt) {
// Comment the following line to hide debug objects
// drawDebug(x, y, radius)
// Split the chars so they can be printed one by one
chars = txt.split("")
// Decide an angle
charSpacingAngleDeg = 5;
// https://p5js.org/reference/#/p5/textAlign
textAlign(CENTER, BASELINE)
textSize(15)
fill('black')
// https://p5js.org/reference/#/p5/push
// Save the current translation matrix so it can be reset
// before the end of the function
push()
// Let's first move to the center of the circle
translate(x, y)
// First rotate half back so that middle char will come in the center
rotate(radians(-chars.length * charSpacingAngleDeg / 2))
for (let i = 0; i < chars.length; i++) {
text(chars[i], 0, -radius)
// Then keep rotating forward per character
rotate(radians(charSpacingAngleDeg))
}
// Reset all translations we did since the last push() call
// so anything we draw after this isn't affected
pop()
}
function setup() {
createCanvas(400, 400);
noLoop();
}
function draw() {
background(220);
let filterText = SHAKES.replace(/[0-9a-zA-Z]/g, '');
filterText = filterText.replace(/\s/g, '');
console.log(filterText);
rotateText(200, 200, 50,filterText);
}