Files
BlitzNext/_release/help/commands/2d_commands/Sqr.htm
T

43 lines
890 B
HTML
Raw Normal View History

2014-12-08 12:43:20 +13:00
<html>
<head>
<title>Blitz3D Docs</title>
<link rel=stylesheet href=../css/commands.css type=text/css>
</head>
<body>
<h1>Sqr (float)</h1>
<h1>Parameters</h1>
<table>
<tr>
<td>
float = any floating point number (integers are converted on the fly)
</td>
</tr>
</table>
<h1>Description</h1>
<table>
<tr>
<td>
This command will return the square root of a specified value. The value returned is a floating point number.
</td>
</tr>
</table>
<h1><a href=../2d_examples/Sqr.bb>Example</a></h1>
<table>
<tr>
<td>
; sqr# example
<br />
<br />
value=25
<br />
<br />
print "The square root of our value is: " + sqr#(value)
<br />
2014-02-26 16:08:39 +13:00
waitkey()
2014-12-08 12:43:20 +13:00
<br />
2014-02-26 16:08:39 +13:00
2014-12-08 12:43:20 +13:00
</td>
2014-02-26 16:08:39 +13:00
</tr>