<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Procedural Drawing Workshop by </title>
      <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk</link>
      <description>“ Procedural art, or artwork defined by a computation-ally represented system of rules, relationships, and behaviours, enables 
creation of works that are flexible, adaptable, and capable of systematic revision.” </description>
      <language>en-us</language>
      <pubDate>2021-03-17 13:14:12 UTC</pubDate>
      <lastBuildDate>2025-04-24 13:14:22 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Some Inspiration </title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320553726</link>
         <description><![CDATA[<div>https://www.instagram.com/generativeartworks/<br>https://studioanf.com/untitled-procedural-drawing/<br>https://medium.com/@_stc/procedural-drawing-fb18aab70268</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-17 13:30:08 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320553726</guid>
      </item>
      <item>
         <title>Example 1</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320585538</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/e7e1bf04812a6a03a9406497751abe59/pic_2png.png" />
         <pubDate>2021-03-17 13:36:04 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320585538</guid>
      </item>
      <item>
         <title>Example 2</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320594969</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/532ed49f310da33c0022b15cbd3491a0/pic6.png" />
         <pubDate>2021-03-17 13:37:44 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320594969</guid>
      </item>
      <item>
         <title>Example 3</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320597362</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/57af2579ab97741e30370053823555ce/pic5.png" />
         <pubDate>2021-03-17 13:38:10 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320597362</guid>
      </item>
      <item>
         <title>Example 4</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320603228</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/99a41f4def9ab9bc2c0913a47db7563e/pic7.png" />
         <pubDate>2021-03-17 13:39:10 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320603228</guid>
      </item>
      <item>
         <title>Example 5</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320605882</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/7da7497c4c3ac860b6bacb955103afb7/pic3.png" />
         <pubDate>2021-03-17 13:39:37 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320605882</guid>
      </item>
      <item>
         <title>The Code (Copy this into Processing)</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320613954</link>
         <description><![CDATA[<div>void setup() {<br>  // This is the size of the screen<br>  size(800, 800);<br><br>}<br><br><br>void draw() {<br>    // This is where you all the code for the shapes as shown below <br>    <br>    // This sets the background colour - black is 0 or white is 255)<br>  background(0);<br><br><br> squares(60, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of squares, colour - black is 0 or white is 255);<br><br> circles(120,60,50,10,1,255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of circles, colour - black is 0 or white is 255);<br><br> triangles(180, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of triangles, colour - black is 0 or white is 255);<br>}<br><br><br><br>// Do not toach the code below here<br>void squares(int xStart, int yStart, int s, int gap, int number, int c) {<br>  rectMode(CENTER);<br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    rect(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void circles(int xStart, int yStart, int s, int gap, int number, int c) {<br><br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    ellipse(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void triangles(int xStart, int yStart, int s, int gap, int number, int c) {<br>  int x = xStart; <br>  int y = yStart;<br><br>  noStroke();<br>  fill(c);<br><br><br><br>  for (int i =0; i&lt;number; i++ ) {<br>    int x1 = x-s/2;<br>    int y1 = y+s/2;<br>    int x2 = x+s/2;<br>    int y2 = y+s/2;<br>    int x3 = x;<br>    int y3 = y-s/2;<br><br>    triangle(x1, y1, x2, y2, x3, y3);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void mousePressed(){<br>  // This will save the image into a folder called Image<br>  save("image/pic.png");<br>  <br>}void setup() {<br>  // This is the size of the screen<br>  size(800, 800);<br><br>}<br><br><br>void draw() {<br>    // This is where you all the code for the shapes as shown below <br>    <br>    // This sets the background colour - black is 0 or white is 255)<br>  background(0);<br><br><br> squares(60, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of squares, colour - black is 0 or white is 255);<br><br> circles(120,60,50,10,1,255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of circles, colour - black is 0 or white is 255);<br><br> triangles(180, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of triangles, colour - black is 0 or white is 255);<br>}<br><br><br><br>// Do not toach the code below here<br>void squares(int xStart, int yStart, int s, int gap, int number, int c) {<br>  rectMode(CENTER);<br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    rect(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void circles(int xStart, int yStart, int s, int gap, int number, int c) {<br><br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    ellipse(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void triangles(int xStart, int yStart, int s, int gap, int number, int c) {<br>  int x = xStart; <br>  int y = yStart;<br><br>  noStroke();<br>  fill(c);<br><br><br><br>  for (int i =0; i&lt;number; i++ ) {<br>    int x1 = x-s/2;<br>    int y1 = y+s/2;<br>    int x2 = x+s/2;<br>    int y2 = y+s/2;<br>    int x3 = x;<br>    int y3 = y-s/2;<br><br>    triangle(x1, y1, x2, y2, x3, y3);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void mousePressed(){<br>  // This will save the image into a folder called Image<br>  save("image/pic.png");<br>  <br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-17 13:41:06 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320613954</guid>
      </item>
      <item>
         <title>What To Do</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320621185</link>
         <description><![CDATA[<div>This software programme (below )has been devised as a simple method of allowing the user to experience and developing an understanding of <br>Procedural Drawing.  The system rules are as follows.<br>1.  You can only use black and white.<br>2.  There are only 3 shapes, a square, a circle and a triangle.<br>3.  You can define the rules for position, scale and quantities.  <br>By defining your own 3rd set of rules how many variants can you create? This is your challenge. </div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-17 13:42:24 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1320621185</guid>
      </item>
      <item>
         <title>The Instructions</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324548717</link>
         <description><![CDATA[<div>This software programme (below)<br> has been devised as a simple method of allowing the user to experience and developing an understanding of <br>Procedural Drawing.  The system rules are as follows.<br>1.  You can only use black and white.<br>2.  There are only 3 shapes, a square, a circle and a triangle.<br>3.  You can define the rules for position, scale and quantities.  <br>By defining your own 3rd set of rules how many variants can you create? This is your challenge.   </div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-18 09:22:42 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324548717</guid>
      </item>
      <item>
         <title>Copy this Code in to Processing</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324553440</link>
         <description><![CDATA[<div>void setup() {<br>  // This is the size of the screen<br>  size(800, 800);<br><br>}<br><br><br>void draw() {<br>    // This is where you all the code for the shapes as shown below <br>    <br>    // This sets the background colour - black is 0 or white is 255)<br>  background(0);<br><br><br> squares(60, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of squares, colour - black is 0 or white is 255);<br><br> circles(120,60,50,10,1,255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of circles, colour - black is 0 or white is 255);<br><br> triangles(180, 60, 50, 10, 1, 255);<br>  // square(x position, y position, size in pixels, gap between shapes, number of triangles, colour - black is 0 or white is 255);<br>}<br><br><br><br>// Do not toach the code below here<br>void squares(int xStart, int yStart, int s, int gap, int number, int c) {<br>  rectMode(CENTER);<br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    rect(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void circles(int xStart, int yStart, int s, int gap, int number, int c) {<br><br>  noStroke();<br>  fill(c);<br>  int x = xStart; <br>  int y = yStart;<br>  for (int i =0; i&lt;number; i++ ) {<br>    ellipse(x, y, s, s);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void triangles(int xStart, int yStart, int s, int gap, int number, int c) {<br>  int x = xStart; <br>  int y = yStart;<br><br>  noStroke();<br>  fill(c);<br><br><br><br>  for (int i =0; i&lt;number; i++ ) {<br>    int x1 = x-s/2;<br>    int y1 = y+s/2;<br>    int x2 = x+s/2;<br>    int y2 = y+s/2;<br>    int x3 = x;<br>    int y3 = y-s/2;<br><br>    triangle(x1, y1, x2, y2, x3, y3);<br>    x=x+s+gap;<br><br>    if (x&gt;width-s/2) {<br>      x=xStart;<br>      y=y+s+gap;<br>    }<br>  }<br>}<br><br>void mousePressed(){<br>  // This will save the image into a folder called Image<br>  save("image/pic.png");<br>  <br>}</div>]]></description>
         <enclosure url="" />
         <pubDate>2021-03-18 09:24:14 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324553440</guid>
      </item>
      <item>
         <title>Example 1</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324555057</link>
         <description><![CDATA[<div>Take 3 regular shapes and create and use these to create 16 irregular shapes. </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/7730af0d3f63bad7d38fc1f218ac4b0c/pic.png" />
         <pubDate>2021-03-18 09:24:42 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324555057</guid>
      </item>
      <item>
         <title>Example 2</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324568408</link>
         <description><![CDATA[<div>Create a word using squares circles and triangles </div>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/86b9122a2f941921ad2e2041aebd78ba/pic.png" />
         <pubDate>2021-03-18 09:29:12 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324568408</guid>
      </item>
      <item>
         <title>Example 3</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324571974</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/e7e1bf04812a6a03a9406497751abe59/pic_2png.png" />
         <pubDate>2021-03-18 09:30:28 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324571974</guid>
      </item>
      <item>
         <title>Example 4</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324576109</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2021-03-18 09:31:53 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324576109</guid>
      </item>
      <item>
         <title></title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324577480</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/57af2579ab97741e30370053823555ce/pic5.png" />
         <pubDate>2021-03-18 09:32:24 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324577480</guid>
      </item>
      <item>
         <title>Example 5</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324577840</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/981116987/99a41f4def9ab9bc2c0913a47db7563e/pic7.png" />
         <pubDate>2021-03-18 09:32:32 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324577840</guid>
      </item>
      <item>
         <title>Inspiration</title>
         <author>vcstaffcogc2</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324583355</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://www.instagram.com/generativeartworks/" />
         <pubDate>2021-03-18 09:34:34 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324583355</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324717733</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/a3664dae94fd5340803855a4bd702b1f/pic.png" />
         <pubDate>2021-03-18 10:22:51 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324717733</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324718819</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1088555800/d80b1747da879f8c5e0a38703dfd4a8a/pic.png" />
         <pubDate>2021-03-18 10:23:15 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324718819</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324725633</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/46ee6fec97d2d11d4e031d20ac3a6e87/pic.png" />
         <pubDate>2021-03-18 10:25:48 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324725633</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324726149</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/2e90e72c137ace85c2ac578b0bfc5ad9/pic1.png" />
         <pubDate>2021-03-18 10:25:59 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324726149</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324726645</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/b39f2f0be735d67f43c258aa70b16676/pic2.png" />
         <pubDate>2021-03-18 10:26:10 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324726645</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324729041</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/9eb8a078370478c45dcd2709802e267b/pic.png" />
         <pubDate>2021-03-18 10:27:03 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324729041</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324741356</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/aad5b40524fc2abb30e9fa21723b24d7/pic.png" />
         <pubDate>2021-03-18 10:31:40 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324741356</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324741887</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/21bf6563378b9d54f648917677f40a14/pic.png" />
         <pubDate>2021-03-18 10:31:53 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324741887</guid>
      </item>
      <item>
         <title></title>
         <author>axelartistries</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324745137</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/867183606/334670f63202c97c453e7534140c514f/pic.png" />
         <pubDate>2021-03-18 10:32:47 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324745137</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324747628</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/df4ba803b541b4106637fe44fa5080d5/pic.png" />
         <pubDate>2021-03-18 10:33:42 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324747628</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324751151</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/0ecc254c2c5ce6c1263ff0a8d7239cfe/pic.png" />
         <pubDate>2021-03-18 10:35:07 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324751151</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324755872</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/61252a295dfee04c0ce39846ce8dea0e/pic.png" />
         <pubDate>2021-03-18 10:36:59 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324755872</guid>
      </item>
      <item>
         <title></title>
         <author>axelartistries</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324757600</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/867183606/6b10d12014e5785654a6ae0e14a999ae/pic.png" />
         <pubDate>2021-03-18 10:37:40 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324757600</guid>
      </item>
      <item>
         <title></title>
         <author>openjamjar</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324781549</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620233/8fecde0595da1064a4bac538809b85df/pic.png" />
         <pubDate>2021-03-18 10:46:32 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324781549</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324789280</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/977704115/898e0c2df5ad19071292daac62489668/pic.png" />
         <pubDate>2021-03-18 10:49:28 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324789280</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324790294</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1088555800/f35ff433964f106e18f525a1cb2246d8/pic.png" />
         <pubDate>2021-03-18 10:49:51 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324790294</guid>
      </item>
      <item>
         <title>hous</title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324799249</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1026185073/7c5bd28b368df12842ef8d3ebf4fd7b5/pic.png" />
         <pubDate>2021-03-18 10:53:17 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324799249</guid>
      </item>
      <item>
         <title></title>
         <author>acarah</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324803413</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631288/b9688aedea7bd32bec0da1cb026b12a4/pic.png" />
         <pubDate>2021-03-18 10:54:47 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324803413</guid>
      </item>
      <item>
         <title>Kachow</title>
         <author>finlaycolman</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324804778</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631978/e2c5b92875acc31c9704e68fe43a6a2d/Processing_Edit_1.JPG" />
         <pubDate>2021-03-18 10:55:19 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324804778</guid>
      </item>
      <item>
         <title>Fat hidden circle</title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324827289</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1026185073/20cdcb98e7459052be4f3d12e47ab932/pic_1.png" />
         <pubDate>2021-03-18 11:03:44 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324827289</guid>
      </item>
      <item>
         <title>Stonks</title>
         <author>finlaycolman</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324831279</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631978/d8418f8982d0f845549d5cc8278ae6c5/All_shapes_big_and_beautiful.JPG" />
         <pubDate>2021-03-18 11:05:21 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324831279</guid>
      </item>
      <item>
         <title></title>
         <author>melissajarvis5</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324849260</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882629877/0bb13ff28c333779751d2ac5fe848269/pic.png" />
         <pubDate>2021-03-18 11:12:21 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324849260</guid>
      </item>
      <item>
         <title>Triangle head hungy</title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324850040</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1026185073/4f04113abda8a94fda54fc9830708f67/pic_2.png" />
         <pubDate>2021-03-18 11:12:38 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324850040</guid>
      </item>
      <item>
         <title></title>
         <author>fmmacpherson12</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324872603</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882621698/8f818a050ed42b5717fe9dc6ef22c346/pic1.png" />
         <pubDate>2021-03-18 11:21:13 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324872603</guid>
      </item>
      <item>
         <title></title>
         <author>openjamjar</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324874063</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620233/22c25bcc8eeffa4b6e164b8ba136db7a/pic.png" />
         <pubDate>2021-03-18 11:21:44 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324874063</guid>
      </item>
      <item>
         <title></title>
         <author>fmmacpherson12</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324876956</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882621698/6cef3166de906943dd98e811b77aabf7/pic.png" />
         <pubDate>2021-03-18 11:22:49 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324876956</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324894772</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/56c81943a3b6c479fbf53a727305b6cc/pic.png" />
         <pubDate>2021-03-18 11:28:58 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324894772</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324909773</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/995613237/11feaf35826483916548eec04e3fea41/pic.png" />
         <pubDate>2021-03-18 11:34:10 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324909773</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324913502</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/977704115/753182cb76d87bd1d63a8b3672051c8d/pic_copy_4.png" />
         <pubDate>2021-03-18 11:35:24 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324913502</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324919353</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1088555800/6c7709c627e33a52d901dd876afff230/pic.png" />
         <pubDate>2021-03-18 11:37:18 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324919353</guid>
      </item>
      <item>
         <title>Insert wisdom here</title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324938947</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1026185073/10e3d704cb1eb39c670a89e17cdd8b89/pic_3.png" />
         <pubDate>2021-03-18 11:44:05 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324938947</guid>
      </item>
      <item>
         <title>Boop</title>
         <author>finlaycolman</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324945494</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882631978/e0cf27407d7b6606c42a952eeb31a68b/Circle_Circle.JPG" />
         <pubDate>2021-03-18 11:46:21 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324945494</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324958861</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/977704115/408fb674a98c440f16ffe5f173388d4b/pic_copy_5.png" />
         <pubDate>2021-03-18 11:50:52 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1324958861</guid>
      </item>
      <item>
         <title></title>
         <author>rachelross10</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325035754</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620266/7b3e2e5de626020c9602379cdb8dd7e3/SIX_5FE680F8_7915_4363_9729_8D1813FBEFC7.JPG" />
         <pubDate>2021-03-18 12:12:45 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325035754</guid>
      </item>
      <item>
         <title></title>
         <author>openjamjar</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325229377</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620233/ea7e356a2385b191e1fb746d312fc8ef/pic.png" />
         <pubDate>2021-03-18 12:57:41 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325229377</guid>
      </item>
      <item>
         <title></title>
         <author>seonaidwalker1</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325278886</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620904/699f1005fd569b990fa6b80f6a604436/pic.png" />
         <pubDate>2021-03-18 13:07:38 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325278886</guid>
      </item>
      <item>
         <title></title>
         <author></author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325507232</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/1088555800/afb8b43e50d8bab1cf796e8d48ab35e9/pic.png" />
         <pubDate>2021-03-18 13:48:12 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325507232</guid>
      </item>
      <item>
         <title></title>
         <author>openjamjar</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325559931</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620233/1ca33c2a4a81dc48fc27f776ae612324/pic.png" />
         <pubDate>2021-03-18 13:57:22 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325559931</guid>
      </item>
      <item>
         <title></title>
         <author>openjamjar</author>
         <link>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325629656</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/882620233/c3829e579a6202c9e65c2f2dc4384356/pic.png" />
         <pubDate>2021-03-18 14:09:33 UTC</pubDate>
         <guid>https://padlet.com/vcstaffcogc2/5gzbh5knl38b83nk/wish/1325629656</guid>
      </item>
   </channel>
</rss>
