![]() |
AML functions by module |
|
|
|
|
AML># Plotting an array
AML> a1 = [10,12,3,14,10,6] # builds a simple array.
AML> Plot(a1) # Plot the array
AML> a2=[1,10,-4,-1,0,2] # builds a second array.
AML> w = NewPlot(a2) # Plot the array in another window
AML> a3=[100,109,154,125,156,203] # builds a third array.
AML> Plot(a3, Window->w) # Plot the array in the second
# window and replaces the plot of a2
AML> # Plotting a MTG
AML> g = MTG("myplant.mtg") # builds a MTG.
AML> F = PlantFrame(VtxList(Scale->@1) #Builds a geometric
# interpretation of the first
# branching system of g
AML> Plot(f) # gives a default visual
# interpretation of the MTG
|