Browse Source

README-en.md edited online with Bitbucket

Jose R Ortiz Ubarri 8 years ago
parent
commit
f786c1733d
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      README-en.md

+ 1
- 0
README-en.md View File

@@ -305,6 +305,7 @@ In the introduction to the topic of functions you saw that in mathematics and in
305 305
 
306 306
             // add the point (x,y) to the graph of the circle
307 307
             wCircleR5.AddPointToGraph(x,y);
308
+        }
308 309
 
309 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