Final project

int y =50;
String [] chapt = {
“Genesis1:26”, “Psalm82:6”, “zechariah12:8”, “luke17:20”, “stjohn 10:34 “, “IIcorinthians10:7”, “leviticus19;18”, “1st corinthians3;16”, “1stcorinthian2:11”, “revelation22:2\n zodiac is our heavenly newspaper”
};
String[] verses = {
“stjohn 10:34, jesus answered unto them is it not written in your law\n I have said yea are gods”, “luke17:20,and when he was demanded of pharises\nWhen the kingdom of god shall come\n He answered and said”,
“the kingdom of god cometh not with observation\n Neither shall they say”,
“lo here or lo there,\n For behold kingdom of god is within you”, “Psalm82:6,Sons of god”, “Genesis1:26,woman are goddess”,
“1stcorinthian3:16\n Dont you know you are temple of god”
};
// Bible verses
String []revel= {
“revel 21:3 i heard a great voice out of heaven saying\n behold the tabernacle of god is with men\n and he will dwell with them”,
“and they shall be his people\n and god himself shall be with them and be their god”,”revelation22:3In midist of the street of it\n and on either side of the river\nwas there the tree of life\n which bare twelve manner of fruits every month\n”
};
// String []command = {
“leviticus19:18thou shalt love thy neighbour as thyself \n I am the LORD”, “1corinthian 2;11,For what man knoweth the things of a man”, “save the Spirit of MAN which is in him \n even so the things of God knoweth no man”, “but the Spirit of God”
“proverbs 20;27” “For what man knoweth the things of a man\n save the spirit of man which is in him?” “even so the things of God knoweth no man\n but the Spirit of God”, “stjohn4:24 god is a spirit\n and they that worship him\n must worship in spirit and in truth”
“Acts17:24,God that made the world and all things therein\n seeing that he is Lord of heaven and earth\n dwelleth not in temples made with hands”
}
void write_word(String[] words) {
int n = int(random(words.length));
text(words[n], random(50, 150), y);
y = y + 30;
}

void new-sentence() {
background(255);
y = 50;
write_word(chapt);
write_word(verses);

write_word(revel);
write_word(command);
}
void setup() {
background(255);
size (500, 400);
fill(#F70707);
new_sentence();
}
void draw() {
}
void mousePressed() {
new_sentence();
}
void keyPressed() {
int random_number = int(random(1000000));
save(random_number + “.png”)
}

This entry was posted in Uncategorized and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *