Point[] shapes at different sizes
- To: mathgroup at smc.vnet.net
- Subject: [mg84845] Point[] shapes at different sizes
- From: Szabolcs Horvát <szhorvat at gmail.com>
- Date: Wed, 16 Jan 2008 22:59:38 -0500 (EST)
The shape of Point objects is usually circular, but below a certain size they are displayed as squares. This is useful for screen display, but not always desirable when exporting to vector formats. Is there a way to set the shape of Points of all sizes to be circular? Here is an example that produces square points: gr = Graphics@Table[{PointSize[x/1000], Point[{x, 0}]}, {x, 1, 10}] Export["gr.eps", gr] Szabolcs