Languages & Coding => Blitz Code Archives => Algorithms => Topic started by: BlitzBot on June 29, 2017, 12:28:40 AM
Title: [bb] Get Area Of Circle by Polarix [ 3 months ago ]
Post by: BlitzBot on June 29, 2017, 12:28:40 AM
Title : Get Area Of Circle Author : Polarix Posted : 3 months ago
Description : Returns the area of an oval.
Code :
Code: BlitzBasic
Graphics640,480
SetBufferBackBuffer()
Global xpos = 320
Global ypos = 240
Global size# = 100
Global radius# = size/2
WhileNotKeyHit(1)
Cls
Oval xpos,ypos,size,size
Text0,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.(https://postimg.org/image/50xdcm2rr/)
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.