Languagesfont For Thought



The debate about whether or not thought is possible without language (whether language evolved for thought) should eventually be added and probably as its own section or withing LOTH theories. Pinker and the idea of mentalese should be better developed. Additionally, I feel that the Sapir-Whorf hypothesis should ultimately be its own section. Please find below many ways to say thought in different languages. This is the translation of the word 'thought' to over 100 other languages. Saying thought in European Languages. Saying thought in Asian Languages. Saying thought in Middle-Eastern Languages. Communicating with other people using a combination of hand gestures and facial expressions is the basic premise of American Sign Language (ASL). Signs representing thoughts and expressions are created with hands and other movements such as facial expressions and body postures. Every word is not represented by a sign in ASL.

Final Project

// Source Code:

// This is a program to help drawing Mandalas.
// —–INSTRUCTIONS:—–
// Just click and drag the mouse on the canvas to draw
// Move the mouse to the right side of the canvas changes colors
// Press S on the keyboard to save a screenshot
// Press N on the keyboard to get a new white canvas
// Press C on the keyboard to change colors

// global variables
int redComponent = 120; //red component in color
int greenComponent = 40; //green component in color
int blueComponent = 80; //blue component in color
int brushSize = 10; //size of “square brush”
int x = 600; //drawing area limit
int y = 600; //drawing area limit
PImage img; //sidebar instructions

//setup
void setup(){
size (800,600);
img = loadImage(“rightside.jpg”);
}

//draw
void draw(){
image(img, x, 0);
if (mouseX > x){ //when mouse is on the right side, new colors are chosen
redComponent = (int) random (255);
greenComponent = (int) random (255);
blueComponent = (int) random (255);
}
}

//mouse input
void mouseDragged(){
fill(redComponent,greenComponent,blueComponent);
stroke (0, 0, 250, 90);
if ((mouseX < x)&&(mouseX>0)&&(mouseY>0)&&(mouseY<y)){ //does not draw on the right
rect (mouseX, mouseY, brushSize, brushSize);
rect (x-mouseX, mouseY, brushSize, brushSize);
rect (mouseX, y-mouseY, brushSize, brushSize);
rect (x-mouseX, y-mouseY, brushSize, brushSize);
rect (mouseY, mouseX, brushSize, brushSize);
rect (x-mouseY, mouseX, brushSize, brushSize);
rect (mouseY, y-mouseX, brushSize, brushSize);
rect (x-mouseY, y-mouseX, brushSize, brushSize);
}
}

//keyboard input
void keyPressed (){
if (key ‘s’ || key ‘S’) saveFrame (“screenshot.png”);
if (key ‘n’ || key ‘N’) background (255,255,255);
if (key ‘c’ || key ‘C’) {
redComponent = (int) random (255);
greenComponent = (int) random (255);
blueComponent = (int) random (255);
}
}

/*

*

*

*

*

Languagesfont

*

*

*

*

Languagesfont For Thought Provoking

*

*

Documentation: https://www.dropbox.com/s/41t4ewrpavfo1xt/Documentation.pdf?dl=0

Cool Language Fonts

Zipped folder with the processing sketch: https://www.dropbox.com/s/w7dp3w9uz27w325/finalproject.zip?dl=0
(runs correctly using the local image file, that I had problems on the online version)

This is the online version: https://dl.dropboxusercontent.com/u/42056530/onlinemandala/web-export/index.html
Unfortunately, for some reason, the image I created isn’t showing. I tried in many different ways, but couldn’t get it to work.
The processing part works fine: just click on the canvas to start drawing, press C to change colors and N for a new canvas!
I hope you can evaluate the Visual Art aspect by looking at the documentation or the zipped folder. Thanks in advance

Different Language Fonts

I can also provide the source code here: https://icygazeoftheprincessoffireflies.wordpress.com/2014/12/17/final-project/
And this is the image I created. This can be another way of running the sketch locally. https://www.dropbox.com/s/nqkh4asl3rdj1qp/rightside.jpg?dl=0
But the zipped folder is much easier.

*/