Loading...
// Graphs functions starting with 'func' // Use Ctrl+B (Command+B) to build float func( float x ) { return 2.*x*x*x-3.*x*x+1.; } float funcRev( float x ) { x = 1. - x; return 2.*x*x*x-3.*x*x+1.; }