"human being, a culture-bearing primate classified in the genus Homo, especially the species H. sapiens. Human beings are anatomically similar and related to the great apes but are distinguished by a more highly developed brain and a resultant capacity for articulate speech and abstract reasoning.",
6
" a person is a being endowed with imagination. A person is able to think abstractly, to project themself into imaginary situations, to plan for the future, and to reflect on the past. In other words, a person acts in the present moment not bound by mere instinct, but usually able to transcend the limits of the animal mind.",
7
"For the real difference between humans and other animals is that humans alone have perception of good and evil,just and unjust, etc. It is the sharing of a common view in these matters that makes a household and a state.",
8
"The general consensus at this time, across the board of researchers, is th at self-awareness is the most fundamental difference between us and the animals. Human beings are capable of self-analysis, mental time travel, imagination, abstract reasoning, cultural establishment, and morality.",
9
"Human beings are defined by a sense of personality, experiences and reason. We are often inclined to believe that the face we see in the mirror is us, a thing which has developed a personality through experiences.",
10
"The intellective soul is what separates humans from all other animals, and allows humans to think and reason",
“I THINK THEREFORE I AM HUMAN” by sophie katsivelos
https://openprocessing.org/sketch/1731122
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.
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!
CC Attribution NonCommercial ShareAlike
I THINK THEREFORE I AM HUMAN
katsivelos
xxxxxxxxxx
//variables
boolean newquestion;
//QUOTES
String[] questions={
"human being, a culture-bearing primate classified in the genus Homo, especially the species H. sapiens. Human beings are anatomically similar and related to the great apes but are distinguished by a more highly developed brain and a resultant capacity for articulate speech and abstract reasoning.",
" a person is a being endowed with imagination. A person is able to think abstractly, to project themself into imaginary situations, to plan for the future, and to reflect on the past. In other words, a person acts in the present moment not bound by mere instinct, but usually able to transcend the limits of the animal mind.",
"For the real difference between humans and other animals is that humans alone have perception of good and evil,just and unjust, etc. It is the sharing of a common view in these matters that makes a household and a state.",
"The general consensus at this time, across the board of researchers, is th at self-awareness is the most fundamental difference between us and the animals. Human beings are capable of self-analysis, mental time travel, imagination, abstract reasoning, cultural establishment, and morality.",
"Human beings are defined by a sense of personality, experiences and reason. We are often inclined to believe that the face we see in the mirror is us, a thing which has developed a personality through experiences.",
"The intellective soul is what separates humans from all other animals, and allows humans to think and reason",
};
PFont MyFont;
int rand;
int index;
int numberofpresses = 0;
int numImages= 32; // The number of image sequences
PImage[] images = new PImage[numImages];
PImage[] images2 = new PImage[numImages];
PImage[] filters = new PImage[8]; //image filters
int f = int( random(1, 2)); //randomize filter
float fs;
int h = (width/2);
void setup() {
//CANVAS
fullScreen();
//float fs = (width*0.5);
int w = width/2;
//TEXT FONT & ALLIGNMENT
fill(0,255,0);
MyFont = createFont( "DS-Digital", 50);
textAlign(CENTER, CENTER);
rectMode(CENTER);
//IMAGES PRELOAD
//images on right side
images[0] = loadImage("face0.png");
for (int i=0; i<32; i++) {
(images[i] = loadImage("face" + i + ".png")).resize(w,w);
}
//images on left side
images2[0] = loadImage("human0.png");
for (int i=0; i<32; i++) {
(images2[i] = loadImage("human" + i + ".png")).resize(w,w);
}
//filters
filters[0] = loadImage("filter0.png");
for (int i=0; i<2; i++) {
(filters[i] = loadImage("filter" + i + ".png")).resize(width,w);
}
}
void keyReleased() {
// CLEAR AND RANDOMIZE TEXT
newquestion = false;
rand = (int)random(questions.length);
}
void keyTyped() {
newquestion = true;
}
void draw() {
background(0);
float w2 = (width * 0.75);
float w1 = (width * 0.25);
float w3 = (width * 0.5);
float h= height/2;
float h2= (height/12);
//IMAGE
imageMode(CENTER);
image(images[numberofpresses], w2, h);
image(images2[numberofpresses],w1, h);
tint(200, 240, 250, 240);
//TEXT
if (newquestion == true) {
background(0,50);
text(questions[rand], width*0.5, h*0.95, width*0.85, h*0.95);
textFont(MyFont);
}
//FILTER
if (numberofpresses <= 0) {
text("USE ARROW KEYS TO GO FOWARD OR BACK. USE OTHER KEYS TO DEFINE",w3,h2);
textFont(MyFont);
}
}
//CLICK CYCLE
void mousePressed() {
numberofpresses = numberofpresses + 1;
if (numberofpresses >= 32) {
numberofpresses=1;
}
}
void keyPressed() {
if (key == CODED) {
if (keyCode == RIGHT) {
numberofpresses = numberofpresses + 1;
} else if (keyCode == LEFT) {
numberofpresses = numberofpresses - 1;
}
}
if (numberofpresses >= 32) {
numberofpresses=1;
}
if (numberofpresses <= 0) {
numberofpresses=1;
}
}
See More Shortcuts