1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-01 09:10:37 +00:00
qb64/internal/help/_PI.txt
2021-02-28 11:47:33 -03:00

36 lines
962 B
Plaintext

{{DISPLAYTITLE: _PI}}
The [[_PI]] function returns '''π''' as a [[_FLOAT]] value with an optional multiplier parameter.
{{PageSyntax}}
: {{Parameter|circumference}} = [[_PI]][({{Parameter|multiplier}})]
{{PageParameters}}
* 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}}