From 31cd85451af856e83365483789dc61122e6987de Mon Sep 17 00:00:00 2001
From: wc41 <97757188+wc41@users.noreply.github.com>
Date: Wed, 4 Oct 2023 20:02:56 -0400
Subject: [PATCH 1/2] Update README.md
---
README.md | 49 +++++++++++++++++++++++++++++++++++++++++--------
1 file changed, 41 insertions(+), 8 deletions(-)
diff --git a/README.md b/README.md
index 91c9197..86ad485 100644
--- a/README.md
+++ b/README.md
@@ -2,20 +2,53 @@
Let's practice using grammars! For this lab, please pull up the L-system node in Houdini.
## 1. Wheat grammar puzzle
-Look at these iterations (n = 1, 2, 3) of a one-rule grammar. Using the built in symbols in Houdini, design a grammar that produces this output. Take a screenshot of your rules.\
-
-
-
+
+Rules:
+
+
+
+1, 2, 3 iterations:
+
+
+
+
+
+(okay to be more accurate to the prompt replace the negatives with positives)
## 2. Square grammar puzzle
-How about this one? Take a screenshot of your rules.\
-
-
-
+
+Rules:
+
+
+
+1, 2, 3 iterations:
+
+
+
+
+
## 3. Custom plant
Choose a plant in the world. Working off a reference, design a grammar that mimics the structure of that plant. Unlike our simple puzzles, please use multiple rules for greater complexity. Think carefully about the structure of your grammar! EXPLAIN the structure of your plant in the README. What are the components? What do each of the rules do? Be sure to also include images of a few iterations of your output plant.
+
+
+
+
+
+Structure explanation:
+
+
+
+
+
+
+
+- The tree is made up of stacks of a trunk, denoted with A, with 3 branches coming off it.
+- Each branch, constructed by B, tapers and rotates upwards slightly.
+- Some of these branches also contain C, which is a repeat of A except with only 1 iteration, causing more branching outward.
+- The tree itself is tapered with a thick base that thins further upward.
+
## Submission
- Create a pull request against this repository
- In your readme, list your solutions and format your README nicely
From dd6f61a8c49d7f3a52f3dcc5d8bead10e4a4572d Mon Sep 17 00:00:00 2001
From: wc41 <97757188+wc41@users.noreply.github.com>
Date: Wed, 4 Oct 2023 20:05:01 -0400
Subject: [PATCH 2/2] Update README.md
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 86ad485..dd806f1 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ Rules:


-(okay to be more accurate to the prompt replace the negatives with positives)
+(okay to be more accurate to the prompt replace the positives with negatives)
## 2. Square grammar puzzle