|
||
Example 7.2 Using VCam to improve a 3D graphThis is another example that needs VCam and chapter 7. There is not much be put on the web page. First attemptFExp := plot::Function3d((x^2 - y^2)*exp(-x^2 - y^2)): plot(FExp)
Second attemptFExp := plot::Function3d( 8*(x^2 - y^2)*exp(-x^2 - y^2), x=-3..3, y=-3..3 ): PL := plot::Function3d(1.5, x=-3..3, y=-3..3): plot(FExp, PL) And after modifications in VCam we get. Observe, the code was modified to get better graph in constrained mode. At the time of developing this page JavaView did not have unconstrained mode like MuPAD and other CAS. Scaling JavaView axes was implemented in November 2004.
|
||