Explorar el Código

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri hace 8 años
padre
commit
f786c1733d
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1
    0
      README-en.md

+ 1
- 0
README-en.md Ver fichero

305
 
305
 
306
             // add the point (x,y) to the graph of the circle
306
             // add the point (x,y) to the graph of the circle
307
             wCircleR5.AddPointToGraph(x,y);
307
             wCircleR5.AddPointToGraph(x,y);
308
+        }
308
 
309
 
309
     After the function call, each ordered pair $$(x,y)$$ is added to the circle’s graph by the member function `AddPointToGraph(x,y)`. After the cycle, the member function `Plot()` is called, which draws the points, and the member function `show()`, which displays the graph. The *members functions* are functions that allow use to work with and object’s data. Notice that each one of the member functions is written after `wCircleR5`, followed by a period. In an upcoming laboratory experience you will learn more about objects, and practice how to create them and invoke their method functions.
310
     After the function call, each ordered pair $$(x,y)$$ is added to the circle’s graph by the member function `AddPointToGraph(x,y)`. After the cycle, the member function `Plot()` is called, which draws the points, and the member function `show()`, which displays the graph. The *members functions* are functions that allow use to work with and object’s data. Notice that each one of the member functions is written after `wCircleR5`, followed by a period. In an upcoming laboratory experience you will learn more about objects, and practice how to create them and invoke their method functions.
310
 
311