Difference between revisions of "Affine normalform of parabola"

From JSXGraph Wiki
Jump to navigationJump to search
Line 18: Line 18:
  
 
var y = board.create('point', [
 
var y = board.create('point', [
             () => a.Value() * x.X() + b.Value() * x.Y(),
+
             () => a.Value() * x.X() + b.Value() * x.Y() + t.X(),
             () => c.Value() * x.X() + d.Value() * x.Y()
+
             () => c.Value() * x.X() + d.Value() * x.Y() + t.Y()
 
         ], {name: 'y'});
 
         ], {name: 'y'});
  

Revision as of 21:47, 6 June 2021

The underlying JavaScript code