MathGroup Archive 1995

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Graphic Bugs

  • To: mathgroup at christensen.cybernetics.net
  • Subject: [mg1211] Re: [mg1185] Graphic Bugs
  • From: Xah Y Lee <xyl10060 at fhda.edu>
  • Date: Tue, 23 May 1995 04:07:44 -0400

PlotRange->All do not consider graphics primitives in both Epilog or Prolog. 
Try these codes below. The Line will not show in both cases.

Plot[ { Sin@x }, {x,0, 5},
        AspectRatio->Automatic,
        PlotRange->All,
        PlotStyle->{{Hue[0],Thickness[.06]}},
        Prolog->{Thickness[.06],Line[{{-1,.5},{-4,.5}}]}
]

Plot[ { Sin@x }, {x,0, 5},
        AspectRatio->Automatic,
        PlotRange->All,
        PlotStyle->{{Hue[0],Thickness[.06]}},
        Epilog->{Thickness[.06],Line[{{-1,.5},{-4,.5}}]}
]

Perhaps this is to be redesigned in future mma versions.

 Xah Lee    74631.731 at compuserve.com   Mountain View, CA
 Quote of the day:
 Mathematics, when viewed from the right angle, can be as boring as one 
 could imagine.
  --Mathfolk's lore




  • Prev by Date: Re: Novice GUI 2D Plotting Package?
  • Next by Date: More Graphic Bugs
  • Previous by thread: Graphic Bugs
  • Next by thread: Re: Graphic Bugs