final project

int y =80;
String [] chapt = {
“Genesis1:26”, “Psalm 82:6”, “zechariah 12:8”, “luke 17:20”, “stjohn 10:34 “, “IIcorinthians 10:7”, “leviticus1 9;18”, “1 st corinthians 3;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\n When 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”,
“1st corinthian3: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 = {
“leviticus 19:18”, “thou 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));

textSize(random(20, 40));
text(words[n], random (50, 150), y);
y = y + 30;
}

void new_sentence() {
background(255);
y = 80;
write_word(chapt);
write_word(verses);

write_word(revel);
write_word(command);
PFont f;
}
void setup() {
background(255);

size (600, 400);
fill(#F70707);
new_sentence();
}
void draw() {
background(255);
fill(0);
textFont(f);
text(message,10,height/2);

}
void mousePressed() {
new_sentence();
}
void keyPressed() {
int random_number = int(random(1000000));
save(random_number + “.png “);

}

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a Reply

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