Question: The Sierpinski Arrowhead Curve(JAVA) I am having trouble starting on this program and wanted to make sure I understand what the comments are asking for
The Sierpinski Arrowhead Curve(JAVA) I am having trouble starting on this program and wanted to make sure I understand what the comments are asking for when I do the implmentation. Please help me with the two methods;
Arrowhead Curve get Prod public class ArrowheadCurve Given the character, return the appropriate production for that character. Implements the Sierpinski Arrowhead Curve refer to https://en. Wikipedia.org/wiki/L-system Example 5 Sierpinski triangle (make sure to scroll down to the part about the Sierpinski Arrovhead Curve) eparam c the character to expand eretum the appropriate production for the given character. public static String get Prod char c) TODO: replace with your inplementation Scanner reader new Scanner System.in) reader next charAt (0) return "c"; end get Prod Given the String representing the current generation, return a new String that is the result of applying the get Prod rules to each character in the current generation. eparam curGen a String that is the current generation ereturn a new String that is the result of applying the get Prod rules to each character in the current generation. public static String nextGen (String curGen) TODO: replace with your inplementation return end nextGen
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
