[opendx-users] Plotting circles in a plane

2005-05-12 Thread Nicolas Neuss
Hello OpenDX-users, I would like to plot circles with a given position and radius in a plane. Is that possible? Up to now, I have tried the following: I have written out a file blobs.dx with the content object 1 class array type float rank 1 shape 2 items 2 data follows 0.2 0.3 0.6 0.7 object 3

Re: [opendx-users] Plotting circles in a plane

2005-05-12 Thread David Thompson
Your Glyph call isn't quite right for what you're trying to achieve. You want Glyph(data, circle, 1.0, 1.0, 0.0, 0.0); I think that whill get you what you want. David Hello OpenDX-users, I would like to plot circles with a given position and radius in a plane. Is that possible? Up to now,

Re: [opendx-users] Plotting circles in a plane

2005-05-12 Thread Nicolas Neuss
David Thompson [EMAIL PROTECTED] writes: Your Glyph call isn't quite right for what you're trying to achieve. You want Glyph(data, circle, 1.0, 1.0, 0.0, 0.0); I think that whill get you what you want. David Thank you very much, this works. Nicolas.