<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, coloring a plane in 3Dplot</title>
    <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 12:31:14 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 12:31:14 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, coloring a plane in 3Dplot</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, coloring a plane in 3Dplot</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot</link>
    </image>
    <item>
      <title>try something like this</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65448</link>
      <itunes:summary>&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;&lt;br /&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;&lt;br /&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;&lt;br /&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;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&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;&lt;br /&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;&lt;br /&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;&lt;br /&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;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>65448</guid>
      <pubDate>Sat, 13 Jun 2009 21:20:34 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>i mean in a 3d shape how can</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65450</link>
      <itunes:summary>&lt;p&gt;i mean in a 3d shape how can i clear maple to color a surface of the shape in a color different from the color of other sections of the shape?&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;i mean in a 3d shape how can i clear maple to color a surface of the shape in a color different from the color of other sections of the shape?&lt;/p&gt;</description>
      <guid>65450</guid>
      <pubDate>Mon, 15 Jun 2009 16:01:50 Z</pubDate>
      <itunes:author>asfn</itunes:author>
      <author>asfn</author>
    </item>
    <item>
      <title>A Simple Way</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65449</link>
      <itunes:summary>&lt;p&gt;You don't need to define colours, and the axes are up to you. Define the parts in different commands and combine them usig 'display'. Here is an example.&lt;/p&gt;
&lt;p&gt;A:=plot3d(sin(x+y),x=-5..5,y=-5..5):&lt;/p&gt;
&lt;p&gt;B:=plot3d(0.75,x=-5..5,y=-5.5,color=blue):&lt;/p&gt;
&lt;p&gt;plots[display](A,B);&lt;/p&gt;
&lt;p&gt;David Clayworth Maplesoft GUI Developer&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;You don't need to define colours, and the axes are up to you. Define the parts in different commands and combine them usig 'display'. Here is an example.&lt;/p&gt;
&lt;p&gt;A:=plot3d(sin(x+y),x=-5..5,y=-5..5):&lt;/p&gt;
&lt;p&gt;B:=plot3d(0.75,x=-5..5,y=-5.5,color=blue):&lt;/p&gt;
&lt;p&gt;plots[display](A,B);&lt;/p&gt;
&lt;p&gt;David Clayworth Maplesoft GUI Developer&lt;/p&gt;</description>
      <guid>65449</guid>
      <pubDate>Mon, 15 Jun 2009 23:45:27 Z</pubDate>
      <itunes:author>DJ Clayworth</itunes:author>
      <author>DJ Clayworth</author>
    </item>
    <item>
      <title>i dont want to combine 2</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65451</link>
      <itunes:summary>&lt;p&gt;i dont want to combine 2 plot!&lt;/p&gt;
&lt;p&gt;i just want to color some&amp;nbsp;portion of one plot,&lt;/p&gt;
&lt;p&gt;ie. if i have a stair shape, color one surface of it (that is for example in z=3) in diff color than other potions of my&amp;nbsp;shape.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;i dont want to combine 2 plot!&lt;/p&gt;
&lt;p&gt;i just want to color some&amp;nbsp;portion of one plot,&lt;/p&gt;
&lt;p&gt;ie. if i have a stair shape, color one surface of it (that is for example in z=3) in diff color than other potions of my&amp;nbsp;shape.&lt;/p&gt;</description>
      <guid>65451</guid>
      <pubDate>Sat, 20 Jun 2009 01:57:06 Z</pubDate>
      <itunes:author>asfn</itunes:author>
      <author>asfn</author>
    </item>
    <item>
      <title>coloring a plane in 3Dplot</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65452</link>
      <itunes:summary>&lt;p&gt;please help me!&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;please help me!&lt;/p&gt;</description>
      <guid>65452</guid>
      <pubDate>Mon, 22 Jun 2009 10:36:23 Z</pubDate>
      <itunes:author>asfn</itunes:author>
      <author>asfn</author>
    </item>
    <item>
      <title>make an attempt</title>
      <link>http://www.mapleprimes.com/questions/37197-Coloring-A-Plane-In-3Dplot?ref=Feed:MaplePrimes:coloring a plane in 3Dplot:Comments#answer65453</link>
      <itunes:summary>&lt;p&gt;what have you tried so far? give us some code to look at.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;what have you tried so far? give us some code to look at.&lt;/p&gt;</description>
      <guid>65453</guid>
      <pubDate>Mon, 22 Jun 2009 11:01:52 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
  </channel>
</rss>