Continuous function II: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 27: Line 27:
  v3 = board.createElement('line', [z3,y3],{strokeColor:'gray',dash:2,strokeWidth:1});
  v3 = board.createElement('line', [z3,y3],{strokeColor:'gray',dash:2,strokeWidth:1});


  h1 = board.createElement('curve', [function(t){return z1.X();},function(t){return t},'t',0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  h1 = board.createElement('curve', [function(t){return z1.X();},function(t){return t},0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  h2 = board.createElement('curve', [function(t){return z2.X();},function(t){return t},'t',0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  h2 = board.createElement('curve', [function(t){return z2.X();},function(t){return t},0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  h3 = board.createElement('curve', [function(t){return z3.X();},function(t){return t},'t',0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  h3 = board.createElement('curve', [function(t){return z3.X();},function(t){return t},0,20], {strokeColor:'gray',dash:2,strokeWidth:1});
  board.unsuspendUpdate();
  board.unsuspendUpdate();



Revision as of 11:29, 10 March 2009

References