We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a96824 commit c608512Copy full SHA for c608512
libs/patterns/constructors.h
@@ -37,7 +37,15 @@ void newGliderCannonPattern(TPattern* pattern);
37
*/
38
void newPressPattern(TPattern* pattern);
39
40
-// TODO: Documentation
+/**
41
+ * @brief Initializes a new Toad pattern.
42
+ *
43
+ * This function sets up a new Toad pattern by initializing the provided pattern structure.
44
+ * The Toad is a pattern of cells that oscillates with a period of 2 generations in a Conway's Game
45
+ * of Life grid.
46
47
+ * @param pattern Pointer to the pattern structure to be initialized with the Toad pattern.
48
+ */
49
void newToadPattern(TPattern* pattern);
50
51
#endif // PATTERNS_CONSTRUCTORS_H_INCLUDED
0 commit comments