Exercise 6
text will be added here
seen from Belarus
seen from United States
seen from Japan

seen from Germany
seen from Russia
seen from United States
seen from United Kingdom
seen from United States
seen from United States

seen from United States

seen from United States
seen from United States
seen from Netherlands
seen from Japan
seen from Japan

seen from Malaysia
seen from Greece
seen from Japan
seen from Canada

seen from Japan
Exercise 6
text will be added here
EXERCISE 6
GROUP MEMBERS: Allegra and Yunzi
I noticed we got a lot of errors when the curve was placed directly in front of the robot but angling it to the robot eliminated them.
Yunzi and I attached lights to the joints of the robot to see how they moved (yellow lights) in contrast to the main face (red light). Interestingly, many of the joints (4, 3, 2) imitated the curve. Axis 1, however, was a blob.
We chose our curve by creating a mesh and then tracing over part of the design to imitate the general shape of mesh surface while still being a doable curve.
The overlaid curve (picture 5) arose when we attached 5 lights to the main point surface.
E6 Jakub Krehel
String text1 = "Jakub Krehel"; PFont font; int counter;
void setup() { size(500, 500); frameRate(8); smooth(); font = createFont("Road Rage", 48); textFont(font, 48); textAlign(CENTER); smooth(); }
void draw() {
background(255); fill(0); typewriteText();
}
void typewriteText(){ if (counter < text1.length()) counter++; text(text1.substring(0, counter), 0, 200, width, height); }
Some / Any - Exercise 1
<!-- var numQues = 10; var answers = new Array(10); answers[0] = "some"; answers[1] = "any"; answers[2] = "any"; answers[3] = "some"; answers[4] = "some"; answers[5] = "any"; answers[6] = "some"; answers[7] = "some"; answers[8] = "some"; answers[9] = "any"; function getScore(form) { var score = 0; for (i=0; i<numQues; i++) { var answer = form.elements[i].value; var answer_length = answer.length; var last_char = answer.charAt(answer_length-1); if (last_char == " ") { form.elements[i].value = (answer.substring(0, answer_length-1)) ; i=i-1; } } for (i=0; i<numQues; i++) { if (form.elements[i].value.toUpperCase() == answers[i].toUpperCase()) { score++; } } score = Math.round(score/numQues*100); form.percentage.value = score + "%"; var correctAnswers = ""; for (i=1; i<=numQues; i++) { correctAnswers += i + ". " + answers[i-1] + "\r\n"; } form.solutions.value = correctAnswers; } //
Cümleleri some veya any kullanarak tamamlayınız.
Example: She wants some apples.
1. I have soda. 2. We don't have milk. 3. Ben's very busy. He doesn't have time. 4. She wants to buy books. 5. Let's listen to music. 6. Do you have pets? 7. Yes, I have 8. We need fruit and vegetables for dinner. 9. Rachel meets friends at the weekend. 10. They don't have coffee.
Skor =