[bb] Get Area Of Circle by Polarix [ 3 months ago ]

Started by BlitzBot, June 29, 2017, 00:28:40

Previous topic - Next topic

BlitzBot

Title : Get Area Of Circle
Author : Polarix
Posted : 3 months ago

Description : Returns the area of an oval.

Code :
Code (blitzbasic) Select
Graphics 640,480
SetBuffer BackBuffer()

Global xpos = 320
Global ypos = 240
Global size# = 100
Global radius# = size/2

While Not KeyHit(1)
Cls

Oval xpos,ypos,size,size
Text 0,0,"The area of the circle is "+GetCircleArea(radius#)+" pixels"

Flip
Wend
End

Function GetCircleArea(r#)
Return(r#*r#*Pi)
End Function


Comments :


Kryzon(Posted 3 months ago)

 [Corrected]


Polarix(Posted 3 months ago)

 Oops. My bad, thanks for telling me!


TomToad(Posted 3 months ago)

 No need to pass x and y to the function since they never get used


Matty(Posted 2 months ago)

 Is Pi a defined constant in blitz. .. i didnt think it was....this will return zero


Matty(Posted 2 months ago)

 Also the function will only return an integer.


TomToad(Posted 2 months ago)

 Pi is defined as 3.14159 in Blitz3D.


Polarix(Posted 2 months ago)

 <div class="quote">  Also the function will only return an integer.  </div> Pixels cannot be halfed or cut into smaller bits. so it will always be a whole number of pixels.


Polarix(Posted 2 months ago)

 <div class="quote">  Is Pi a defined constant in blitz. .. i didnt think it was....this will return zero  </div>I checked the example. It works fine for me.


Kryzon(Posted 2 months ago)

 You're right, pixels are always at integral coordinates.Still, in some cases it's useful to work with floating point coordinates because then you have sub-pixel coverage: a graphic covers "part" of the pixel, so the pixel is semitransparent. This is how some software do antialiased graphics.


Floyd(Posted 2 months ago)

 <div class="quote"> Pixels cannot be halfed or cut into smaller bits. so it will always be a whole number of pixels.  </div>The point of the comment about the function returning an integer is that it computes a floating point value but returns an integer.The fact that the number of pixels is an integer is not really relevant. GetCircleArea is not counting pixels and will match the number of pixels drawn only by coincidence.For example, with width = height = 8 GetCircleArea returns 50 when the actual number of pixels is 52.


Polarix(Posted 1 month ago)

 I don't get what you are saying, it works fine