Thanks Harry, please read
This is not what I actually meant. Sorry If I didn't make myself clear.
The resolution of the screen stays unchanged. With "resolution" I meant how coarse or fine the graphical output should be.
Okay, suppose the screen resolution stays unchanged, let's say 1024x768. Let's say you are calculating a 2D function called f (x,y independant variables, z dependant variable; plot the z as color). You begin the calculation from e.g. x=0 to x=100 with step 10 and from y=0 to y=100 with step 10 also. I want to represent a calculated point e.g. f (40,50) with a square which ranges from x=35 to 45 and y=45 to 50 {so the center of the square (or cell) is (40,50) } The reason I want to do this is because I use a relatively large step size (10%) ==> This is a COARSE representation
Now, say I use the same x, y bounds but a step size of 1. Calculated point f (40,50) should be now represented with a square (or cell) which ranges from x=39.5 to x=40.5 and y=49.5 to y=50.5. ==> FINE representation
So, to make things simple, is there any kind of "square brush" with "adjustable size of the square" :eek: ?
If you know there is, please explain.
Note :
I tried to use PSet but when making coarse representations I used the DrawWidth property to change the pixel display size, which resulted in filled circles, not filled rectangles :o !!! However, when creating very fine representations (DrawWidth=1), it appeared OK, because a very small circle looks almost the same with a very small square.