Difference between revisions of "3DGraphsInRectangular"
(added historical tag and gave updated problem link) |
|||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{historical}} |
||
+ | |||
+ | <p style="font-size: 120%;font-weight:bold">This problem has been replaced with [https://openwebwork.github.io/pg-docs/sample-problems/VectorCalc/RectangularGraph3D.html a newer version of this problem]</p> |
||
<h2>Interactive Graphs of Functions in Rectangular Coordinates in Three Dimensions</h2> |
<h2>Interactive Graphs of Functions in Rectangular Coordinates in Three Dimensions</h2> |
||
Line 78: | Line 81: | ||
</p> |
</p> |
||
<p> |
<p> |
||
− | Setting <code>outputtype</code> to something other than 4 will require you to read the source code of <code> |
+ | Setting <code>outputtype</code> to something other than 4 will require you to read the source code of <code>LiveGraphicsRectangularPlot3D.pl</code> and familiarize yourself with the details of the <code>LiveGraphics3D</code> java applet. For more information on how to work with the string of plot data, see Martin Kraus's [http://www.vis.uni-stuttgart.de/~kraus/LiveGraphics3D/ LiveGraphics3D homepage], and the excellent article by Jonathan Rogness and Martin Kraus [http://mathdl.maa.org/mathDL/55/?pa=content&sa=viewDocument&nodeId=1143&pf=1 Constructing Mathlets Quickly Using LiveGraphics3D]. |
</p> |
</p> |
||
</td> |
</td> |
Latest revision as of 10:00, 29 June 2023
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. |