<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Axis in 3DPLOT</title>
    <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 18:43:33 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 18:43:33 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Axis in 3DPLOT</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Axis in 3DPLOT</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT</link>
    </image>
    <item>
      <title>try something like this</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65431</link>
      <itunes:summary>&lt;p&gt;I just posted the following for http://www.mapleprimes.com/forum/coloringplane3dplot, perhaps my answer there might help you too.&lt;/p&gt;
&lt;p&gt;The default is typically for the axes to cross at (0,0,0). Alternatives are possible.&lt;/p&gt;
&lt;p&gt;Check the Help menu: Graphics -&amp;gt; 3D -&amp;gt;Options -&amp;gt;Overview&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here an example from my stuff:&lt;/p&gt;
&lt;p&gt;Define some fonts:&lt;/p&gt;
&lt;p&gt;&amp;gt; axesfonts:=axesfont=[TIMES,ROMAN,8]:&lt;br /&gt;
&amp;gt; labelfonts:=labelfont=[TIMES,ROMAN,10]:&lt;/p&gt;
&lt;p&gt;Define some colors:&lt;/p&gt;
&lt;p&gt;&amp;gt; myblue:=COLOR(RGB,.1,0,.55):&lt;br /&gt;
&amp;gt; myred:=COLOR(RGB,.9,.1,0):&lt;br /&gt;
&amp;gt; mygreen:=COLOR(RGB,.0,.5,.0):&lt;/p&gt;
&lt;p&gt;Define the style of plot:&lt;/p&gt;
&lt;p&gt;&amp;gt; plotopts:=style=patchcontour, shading=none,axes=boxed:&lt;/p&gt;
&lt;p&gt;The plot itself (here an implicit plot):&lt;/p&gt;
&lt;p&gt;&amp;gt; xmin:=0, etc.&lt;/p&gt;
&lt;p&gt;&amp;gt; p:=plots[implicitplot3d]({f},x=xmin..xmax,y=ymin..ymax,z=zmin..zmax, numpoints=10000, plotopts, colour=myblue): &lt;br /&gt;
&amp;gt; display3d({p}, axesfonts, labelfonts, orientation=[-115,15]);&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I just posted the following for http://www.mapleprimes.com/forum/coloringplane3dplot, perhaps my answer there might help you too.&lt;/p&gt;
&lt;p&gt;The default is typically for the axes to cross at (0,0,0). Alternatives are possible.&lt;/p&gt;
&lt;p&gt;Check the Help menu: Graphics -&amp;gt; 3D -&amp;gt;Options -&amp;gt;Overview&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here an example from my stuff:&lt;/p&gt;
&lt;p&gt;Define some fonts:&lt;/p&gt;
&lt;p&gt;&amp;gt; axesfonts:=axesfont=[TIMES,ROMAN,8]:&lt;br /&gt;
&amp;gt; labelfonts:=labelfont=[TIMES,ROMAN,10]:&lt;/p&gt;
&lt;p&gt;Define some colors:&lt;/p&gt;
&lt;p&gt;&amp;gt; myblue:=COLOR(RGB,.1,0,.55):&lt;br /&gt;
&amp;gt; myred:=COLOR(RGB,.9,.1,0):&lt;br /&gt;
&amp;gt; mygreen:=COLOR(RGB,.0,.5,.0):&lt;/p&gt;
&lt;p&gt;Define the style of plot:&lt;/p&gt;
&lt;p&gt;&amp;gt; plotopts:=style=patchcontour, shading=none,axes=boxed:&lt;/p&gt;
&lt;p&gt;The plot itself (here an implicit plot):&lt;/p&gt;
&lt;p&gt;&amp;gt; xmin:=0, etc.&lt;/p&gt;
&lt;p&gt;&amp;gt; p:=plots[implicitplot3d]({f},x=xmin..xmax,y=ymin..ymax,z=zmin..zmax, numpoints=10000, plotopts, colour=myblue): &lt;br /&gt;
&amp;gt; display3d({p}, axesfonts, labelfonts, orientation=[-115,15]);&lt;/p&gt;</description>
      <guid>65431</guid>
      <pubDate>Sat, 13 Jun 2009 21:27:16 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>default 3D plot axes</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65432</link>
      <itunes:summary>&lt;p&gt;In 3D plots, by default, the axis is not shown, using the plot3d command.&amp;nbsp; I have not tried it with other 3D plot styles.&amp;nbsp; In order to show the origin @ 0,0,0 you can add the &amp;quot;normal&amp;quot; axes option to your plot command.&amp;nbsp; See both versions below for an example.&lt;/p&gt;
&lt;p&gt;plot3d(binomial, 0..5, 0..5, grid=[10,10];&lt;/p&gt;
&lt;p&gt;plot3d(binomial, 0..5, 0..5, grid=[10,10],axes=normal);&lt;/p&gt;
&lt;p&gt;Another way is to use the first version above, right click on the plot, go to Axes, and select normal.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;In 3D plots, by default, the axis is not shown, using the plot3d command.&amp;nbsp; I have not tried it with other 3D plot styles.&amp;nbsp; In order to show the origin @ 0,0,0 you can add the &amp;quot;normal&amp;quot; axes option to your plot command.&amp;nbsp; See both versions below for an example.&lt;/p&gt;
&lt;p&gt;plot3d(binomial, 0..5, 0..5, grid=[10,10];&lt;/p&gt;
&lt;p&gt;plot3d(binomial, 0..5, 0..5, grid=[10,10],axes=normal);&lt;/p&gt;
&lt;p&gt;Another way is to use the first version above, right click on the plot, go to Axes, and select normal.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</description>
      <guid>65432</guid>
      <pubDate>Sun, 14 Jun 2009 01:32:45 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>Thanks for all those</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65433</link>
      <itunes:summary>&lt;p&gt;Thanks for all those responses.&lt;/p&gt;
&lt;p&gt;The problem is: I'm trying to plot a List of Polygons using the (old?) PLOT3D command in the fashion &amp;quot;PLOT3D(op(mylist))&amp;quot;. You cannot add parameters there like axes=normal etc.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks for all those responses.&lt;/p&gt;
&lt;p&gt;The problem is: I'm trying to plot a List of Polygons using the (old?) PLOT3D command in the fashion &amp;quot;PLOT3D(op(mylist))&amp;quot;. You cannot add parameters there like axes=normal etc.&lt;/p&gt;</description>
      <guid>65433</guid>
      <pubDate>Tue, 16 Jun 2009 09:49:48 Z</pubDate>
      <itunes:author>hanswurst</itunes:author>
      <author>hanswurst</author>
    </item>
    <item>
      <title>plot followed by display</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65434</link>
      <itunes:summary>&lt;p&gt;create the plot first, along the lines of &lt;/p&gt;
&lt;p&gt;p:= plot3d( etc.&lt;/p&gt;
&lt;p&gt;then display it with the parameters, along the lines of:&lt;/p&gt;
&lt;p&gt;display(p,axes=normal)&lt;/p&gt;
&lt;p&gt;should work&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;create the plot first, along the lines of &lt;/p&gt;
&lt;p&gt;p:= plot3d( etc.&lt;/p&gt;
&lt;p&gt;then display it with the parameters, along the lines of:&lt;/p&gt;
&lt;p&gt;display(p,axes=normal)&lt;/p&gt;
&lt;p&gt;should work&lt;/p&gt;</description>
      <guid>65434</guid>
      <pubDate>Tue, 16 Jun 2009 11:04:27 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>ah, thanks a lot!</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65435</link>
      <itunes:summary>&lt;p&gt;ah, thanks a lot!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;ah, thanks a lot!&lt;/p&gt;</description>
      <guid>65435</guid>
      <pubDate>Tue, 16 Jun 2009 16:53:58 Z</pubDate>
      <itunes:author>hanswurst</itunes:author>
      <author>hanswurst</author>
    </item>
    <item>
      <title>Don't use PLOT3D</title>
      <link>http://www.mapleprimes.com/questions/37195-Axis-In-3DPLOT?ref=Feed:MaplePrimes:Axis in 3DPLOT:Comments#answer65436</link>
      <itunes:summary>&lt;p&gt;You can create polygons from lists using the command polygonplot from the plots package. Type 'polygonplot' into the help system.&lt;/p&gt;
&lt;p&gt;It is strongly recommended that you don't use any of the 'uppercase' plot commands like PLOT and PLOT3D. They look like commands, but they are actually the internal language used by the plotting system. They are only exposed to the user for the very, very small number of times that you need to go behind the scenes. Using them bypasses a lot of code that does error-checking and optimization, and using them is always harder than the normal commands. There is almost always a regular command that does whatever you need to do that can be done with PLOT or PLOT3D.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;David Clayworth Maplesoft GUI Developer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;You can create polygons from lists using the command polygonplot from the plots package. Type 'polygonplot' into the help system.&lt;/p&gt;
&lt;p&gt;It is strongly recommended that you don't use any of the 'uppercase' plot commands like PLOT and PLOT3D. They look like commands, but they are actually the internal language used by the plotting system. They are only exposed to the user for the very, very small number of times that you need to go behind the scenes. Using them bypasses a lot of code that does error-checking and optimization, and using them is always harder than the normal commands. There is almost always a regular command that does whatever you need to do that can be done with PLOT or PLOT3D.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;David Clayworth Maplesoft GUI Developer&lt;/p&gt;</description>
      <guid>65436</guid>
      <pubDate>Wed, 17 Jun 2009 18:04:28 Z</pubDate>
      <itunes:author>DJ Clayworth</itunes:author>
      <author>DJ Clayworth</author>
    </item>
  </channel>
</rss>