Ordering of graphics primitives (system)
- To: mathgroup at yoda.physics.unc.edu
- Subject: Ordering of graphics primitives (system)
- From: "Ken Levasseur, Math, UMass/Lowell" <levasseuk at aspen.ulowell.edu>
- Date: Wed, 19 Aug 1992 08:48:03 EDT
I am using a Mac IIsi with Mathematica 2.0 - the standard version. I was demonstrating graphics primitives to my class and there was a distinct difference in the outputs from > pt=Map[Point[{#,#^2}]&,Table[Random[],{20}]]; > ax=Line[{{1,0},{0,0},{0,1}}]; > nm=Text["y = x^2",{0.2,0.9}]; > {pt,ax,nm}//Graphics//Show > {nm,pt,ax}//Graphics//Show In the latter output, all points in pt are connected to pt[[1]].