i have a text file which contains the x,y coordinates of the sinewave.Using these coordinates i need to draw the sinewave graph.Then,i need an option in graph to zoom in and zoom out the graph.How should i do this? kindly post any ideas,if any open source is available please provide me link.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Welcome to JavaRanch.
The Code Barn contains sample code to draw both X/Y graph and a sine curve.
What ideas have you had for implementing the zoom?
thanks for your information. i did draw a xy graph.But i want the coordinates are should be taken from file called as sinewave.txt file.
i dont know about zoom operation.
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Do you know how to use the java.io package to read data from a file?
As for zooming, let's say the image is centered on point (x0, y0), has a width of w and a height of h (in terms of the data displayed, not screen coordinates). Zooming in would mean that w and h get smaller by some factor f.
So instead of drawing x coordinates from x0-w/2 to x0+w/2 and y coordinates from y0-h2/ to y0+h/2, you would draw from x0-w/(2*f) to x0+w/(2*f) and y coordinates from y0-h/(2*f) to y0+h/(2*f). f might be in the order of 1.5 (or maybe sqrt(2) ) for each zoom step. Does this help?
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32675
4
posted
0
Would the scale method of Graphics2D be of any use, do you think, Ulf?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35241
7
posted
0
Would the scale method of Graphics2D be of any use
Not without preceding and subsequent translate method calls, in which case we're into using affine transformations (which may or may not be something the OP is familiar with). [ February 17, 2008: Message edited by: Ulf Dittmer ]
Craig Wood
Ranch Hand
Joined: Jan 14, 2004
Posts: 1535
posted
0
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32675
4
posted
0
Originally posted by Ulf Dittmer:
Not without preceding and subsequent translate method calls, in which case we're into using affine transformations (which may or may not be something the OP is familiar with).
Agree. AffineTransforms count as bravery beyond the call of duty.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: regarding draw a graph with zoom speciality