<< Chapter < Page Chapter >> Page >

The value returned from the Math.sqrt method can be considered to be either positive or negative. Only the positivevalue is returned by this method. When the returned value is considered to be positive and the results are plotted, one-half of a circle is displayed as shownby the BLUE line in Figure 10 . Similarly, when the returned value is considered to be negative and the results are plotted, the other half of the circle isdisplayed as shown by the GREEN line in Figure 10 .

Listing 10 . The method named function for Circle01. double function(double rVal,double xVal){ double yVal = Math.sqrt(rVal*rVal - xVal*xVal + 0.0000000001);return yVal; }//end function

If the expression passed to the sqrt method is negative, the value returned by that method will not be valid. Because the computations inthis program are performed as type double , and because all floating point computations are only estimates of the truth, the computed differencebetween the radius squared and the x-value squared can actually be an extremely small negative value when it should be zero. A small positive fudge factor wasadded to prevent that value from going negative due to small floating point computational errors. (This sort of thing is often required when doing a lot of floating point computations. There are various ways to do it and there may bebetter ways than the one used here.)

Draw half the circle in BLUE

The code in Listing 11 draws the BLUE half of the circle shown in Figure 10 .

Listing 11 . Draw half the circle in BLUE. for(int cnt=0; cnt<=100;cnt++,xVal += xInc){ //Get a y-value for the given x-value.yVal = function(rVal,xVal); //Apply the offsets and scale the resultscol = (int)((xOff+xVal)*xScale); row = (int)((yOff+yVal)*yScale);//Move to the first point without drawing a line because the// pen is not down. Translate the origin to the center in the // process.turtle.moveTo(col + world.getWidth()/2, row + world.getHeight()/2);//Lower the pen in order to draw a line from each point to the // next point.turtle.penDown(); }//end for loop

Having initialized xVal and xInc on the basis of the radius in Listing 9 , the code in Listing 11 is essentially the same as the code in the earlier programs in this lesson.

Draw the other half of the circle in GREEN

The code that draws the GREEN half of the circle is shown in Listing 18 . It is essentially the same as the code in Listing 10 except that the sign on yVal is flipped from positive to negative as discussed above .

Different line width

One other difference that I haven't mentioned yet is trivial but interesting. You may have noticed that the line width in Figure 10 is about twice that in Figure 9 . I purposely did that to illustrate that one of the useful features of graphing functions with a turtle is that you can control the width of the line.The importance of that capability will become apparent in the next section.

That concludes the interesting differences between this program and the previous programs.

Questions & Answers

how do you get the 2/50
Abba Reply
number of sport play by 50 student construct discrete data
Aminu Reply
width of the frangebany leaves on how to write a introduction
Theresa Reply
Solve the mean of variance
Veronica Reply
Step 1: Find the mean. To find the mean, add up all the scores, then divide them by the number of scores. ... Step 2: Find each score's deviation from the mean. ... Step 3: Square each deviation from the mean. ... Step 4: Find the sum of squares. ... Step 5: Divide the sum of squares by n – 1 or N.
kenneth
what is error
Yakuba Reply
Is mistake done to something
Vutshila
Hy
anas
hy
What is the life teble
anas
hy
Jibrin
statistics is the analyzing of data
Tajudeen Reply
what is statics?
Zelalem Reply
how do you calculate mean
Gloria Reply
diveving the sum if all values
Shaynaynay
let A1,A2 and A3 events be independent,show that (A1)^c, (A2)^c and (A3)^c are independent?
Fisaye Reply
what is statistics
Akhisani Reply
data collected all over the world
Shaynaynay
construct a less than and more than table
Imad Reply
The sample of 16 students is taken. The average age in the sample was 22 years with astandard deviation of 6 years. Construct a 95% confidence interval for the age of the population.
Aschalew Reply
Bhartdarshan' is an internet-based travel agency wherein customer can see videos of the cities they plant to visit. The number of hits daily is a normally distributed random variable with a mean of 10,000 and a standard deviation of 2,400 a. what is the probability of getting more than 12,000 hits? b. what is the probability of getting fewer than 9,000 hits?
Akshay Reply
Bhartdarshan'is an internet-based travel agency wherein customer can see videos of the cities they plan to visit. The number of hits daily is a normally distributed random variable with a mean of 10,000 and a standard deviation of 2,400. a. What is the probability of getting more than 12,000 hits
Akshay
1
Bright
Sorry i want to learn more about this question
Bright
Someone help
Bright
a= 0.20233 b=0.3384
Sufiyan
a
Shaynaynay
How do I interpret level of significance?
Mohd Reply
It depends on your business problem or in Machine Learning you could use ROC- AUC cruve to decide the threshold value
Shivam
how skewness and kurtosis are used in statistics
Owen Reply
yes what is it
Taneeya
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask