{"id":72,"date":"2015-06-16T05:14:09","date_gmt":"2015-06-16T01:14:09","guid":{"rendered":"http:\/\/courses.haigarmen.com\/creativecoding\/?p=72"},"modified":"2015-06-17T03:28:12","modified_gmt":"2015-06-16T23:28:12","slug":"exercise-12","status":"publish","type":"post","link":"https:\/\/courses.haigarmen.com\/creativecoding\/exercise-12\/","title":{"rendered":"Exercise 12"},"content":{"rendered":"<p>moving our ball around<\/p>\n<pre>\r\n<code>\r\nfloat circle_x = 300;\r\nfloat circle_y = 20;\r\n\r\nvoid setup() {\r\n  size(400, 200);\r\n  stroke(#D60DFF);\r\n  strokeWeight(7);\r\n}\r\nvoid draw() {\r\n  background(#21EA73);\r\n  ellipse(circle_x, circle_y, 40, 40);\r\n  circle_x = circle_x - 2;\r\n  circle_y = circle_y + 2;\r\n}\r\n<\/code>\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>moving our ball around float circle_x = 300; float circle_y = 20; void setup() { size(400, 200); stroke(#D60DFF); strokeWeight(7); } void draw() { background(#21EA73); ellipse(circle_x, circle_y, 40, 40); circle_x = circle_x &#8211; 2; circle_y = circle_y + 2; }<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[],"class_list":["post-72","post","type-post","status-publish","format-standard","hentry","category-lessons"],"_links":{"self":[{"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/posts\/72","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/comments?post=72"}],"version-history":[{"count":1,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/posts\/72\/revisions"}],"predecessor-version":[{"id":73,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/posts\/72\/revisions\/73"}],"wp:attachment":[{"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/media?parent=72"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/categories?post=72"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/courses.haigarmen.com\/creativecoding\/wp-json\/wp\/v2\/tags?post=72"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}