<< 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

what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
cell is the smallest unit of the humanity biologically
Abraham
what is biology
Victoria Reply
what is biology
Abraham
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
Biology is a branch of Natural science which deals/About living Organism.
Ahmedin Reply
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