3DGraphsInRectangular
This problem has been replaced with a newer version of this problem
Interactive Graphs of Functions in Rectangular Coordinates in Three Dimensions
This PG code shows how to generate interactive graphs of functions from a MathObjects formula. It uses the Java applet LiveGraphics3D to display the interactive graph.
PG problem file | Explanation |
---|---|
DOCUMENT(); loadMacros( "PGstandard.pl", "MathObjects.pl", "parserVectorUtils.pl", "LiveGraphicsRectangularPlot3D.pl", ); TEXT(beginproblem()); |
Initialization:
We need to include the macros file |
Context("Numeric"); Context()->variables->are(x=>"Real",y=>"Real",r=>"Real",s=>"Real",t=>"Real"); $a = - random(-1,1,2); $plot = RectangularPlot3DRectangularDomain( function => Formula("t^2+$a*s^2"), xvar => "s", yvar => "t", xmin => -2, xmax => 2, ymin => -2, ymax => 2, xsamples => 10, ysamples => 10, axesframed => 1, xaxislabel => "S", yaxislabel => "T", zaxislabel => "Z", outputtype => 4, ); |
Setup:
We generate a string of plot data using
Setting |
Context()->texStrings; BEGIN_TEXT \{ Live3Ddata( $plot, image => "hyperbolic-paraboloid.png", size => [400,400], tex_size => 600, tex_center => 1, scale => 1.1, ); \} END_TEXT Context()->normalStrings; |
Main Text:
To display the string of plot data
After you construct the graph you like, don't forget to take a screen shot of it and make an image file such as |
$showPartialCorrectAnswers = 1; ENDDOCUMENT(); |
Answer Evaluation: Nothing happening here. |