Fix link?

This commit is contained in:
linarphy 2024-01-01 23:15:58 +01:00
parent 04666597b9
commit e4e7cdfdb2
No known key found for this signature in database
GPG key ID: 0610ABB68DAA7B65

View file

@ -32,16 +32,16 @@ manager is defined from the html `<body>` tag, so each
of this elements. of this elements.
The second instruction do a lot of things at once. First, the method The second instruction do a lot of things at once. First, the method
[`add_canvas`](references.md#Manager.add_canvas) add, like this name [`add_canvas`](references.md#Manager-add_canvas) add, like this name
indicate, a [Canvas](references.md#Canvas) with a specific width and indicate, a [Canvas](references.md#Canvas) with a specific width and
height associated to the [Manager](references.md#Manager) we created height associated to the [Manager](references.md#Manager) we created
before. Next, the method [`add_axes`](references.md#Figure.add_axes) of before. Next, the method [`add_axes`](references.md#Figure-add_axes) of
the [figure](references.md#Canvas.figure) property of the canvas we the [figure](references.md#Canvas-figure) property of the canvas we
created add an [Axes](references.md#Axes) to this figure. Then, the created add an [Axes](references.md#Axes) to this figure. Then, the
[`plot`](references.md#Axes.plot) method take the first list of number [`plot`](references.md#Axes-plot) method take the first list of number
as the x coordinate of points, the second as y ones and finally, an as the x coordinate of points, the second as y ones and finally, an
optional dictionary which define the style of the plot composed of each optional dictionary which define the style of the plot composed of each
point. point.
Finally the [`draw`](references.md#Manager.draw) method render the plot Finally the [`draw`](references.md#Manager-draw) method render the plot
we created to display it on the created canvas in the web page. we created to display it on the created canvas in the web page.