Skip to content

Commit

Permalink
document Curve.points, #55
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelzoom committed Aug 5, 2016
1 parent 5899e61 commit 2ab28c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion js/curve-fitting/model/Curve.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ define( function( require ) {
this.orderProperty = orderProperty;
this.fitProperty = fitProperty;

// @public Points for plotting curve. Only point above graph will be taken for calculations. Order doesn't matter.
// @public Points for plotting curve. This includes points that are outside the bounds of the graph, so
// be careful to call getPoints when using points in calculations. Order of the points doesn't matter.
this.points = new ObservableArray();

// @private creates a fit for points
Expand Down

0 comments on commit 2ab28c5

Please sign in to comment.