1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-05 22:50:23 +00:00
QB64-PE/internal/help/_PI__11.txt
Roland Heyder 6912727753 Update help files
Help file snapshot as of 07/31/2022.
2022-07-31 23:57:56 +02:00

38 lines
990 B
Plaintext

{{QBDLDATE:07-31-2022}}
{{QBDLTIME:23:39:16}}
{{DISPLAYTITLE: _PI}}
The [[_PI]] function returns '''ã''' as a [[_FLOAT]] value with an optional multiplier parameter.
{{PageSyntax}}
: {{Parameter|circumference}} = [[_PI]][({{Parameter|multiplier}})]
{{Parameters}}
* Optional {{Parameter|multiplier}} (''2 * radius'' in above syntax) allows multiplication of the π value.
{{PageDescription}}
* Function can be used in to supply π or multiples in a program.
* Accuracy is determined by the return variable type [[AS]] [[SINGLE]], [[DOUBLE]] or [[_FLOAT]].
* The ã value can also be derived using 4 * [[ATN]](1) for a [[SINGLE]] value.
{{PageExamples}}
''Example:'' Calculating the area of a circle using a [[SINGLE]] variable in this case.
{{CodeStart}}radius = 5
circlearea = {{Cl|_PI}}(radius ^ 2)
PRINT circlearea
{{CodeEnd}}
{{OutputStart}} 78.53982
{{OutputEnd}}
{{PageSeeAlso}}
* [[_ATAN2]], [[TAN]]
* [[ATN]] {{text|(arctangent)}}
* [[SIN]], [[COS]]
{{PageNavigation}}