L-system으로 만든 식물 모델이, 식물처럼 행동할 수 있도록 만드는 것 무엇보다 시간이 흐름에 따라 변화가 생길 수 있도록 만들어보자. import matplotlib.pyplot as plt %matplotlib inline nan = float('nan') def plot_coords(coords, lw=0.5, bare_plot=True): if bare_plot: # Turns off the axis markers. plt.axis('off') # Ensures equal aspect ratio. plt.axes().set_aspect('equal', 'datalim') # Converts a list of coordinates into # lists of X and Y values, res..