eintr: Print Whole Graph

 
 C.4 Printing the Whole Graph
 ============================
 
 Now we are nearly ready to print the whole graph.
 
    The function to print the graph with the proper labels follows the
 outline we created earlier (SeeA Graph with Labeled Axes Full
 Graph.), but with additions.
 
    Here is the outline:
 
      (defun print-graph (numbers-list)
        "DOCUMENTATION..."
        (let ((height  ...
              ...))
          (print-Y-axis height ... )
          (graph-body-print numbers-list)
          (print-X-axis ... )))
 

Menu