Giving Letters a Code in a Coordinatesystem
in
Programming Questions
•
2 years ago
Hello,
I want to draw words in a coordinate system and created therefore this table in excel.
My problem is, that I have to copy and paste every coordinate after excel calculated them into processing like this:
import processing.pdf.*;
background(2561, 2562, 2563);
size(290,290);
beginRecord(PDF, "hello.pdf");
line (10,200,60,10);
line (60,10,280,130);
line (280,130,160,280);
line (160,280,10,130);
endRecord();
What code would you recommend to type just a word into processing and get out a picture like this?
Thanks, lapin
I want to draw words in a coordinate system and created therefore this table in excel.
My problem is, that I have to copy and paste every coordinate after excel calculated them into processing like this:
import processing.pdf.*;
background(2561, 2562, 2563);
size(290,290);
beginRecord(PDF, "hello.pdf");
line (10,200,60,10);
line (60,10,280,130);
line (280,130,160,280);
line (160,280,10,130);
endRecord();
What code would you recommend to type just a word into processing and get out a picture like this?
Thanks, lapin
1