OsApproxEquals

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
Line 9: Line 9:
 
integer osApproxEquals(vector va, vector vb, float margin)<br/>
 
integer osApproxEquals(vector va, vector vb, float margin)<br/>
 
integer osApproxEquals(rotation ra, rotation rb, float margin)
 
integer osApproxEquals(rotation ra, rotation rb, float margin)
|ossl_example=
+
|ossl_example=<source lang="lsl">
 +
 +
if(osApproxEquals(pos, otherpos)) // on Xengine use if(osApproxEquals(pos, otherpos) == 1)
 +
    llOwnerSay("Positions are equal");
 +
...
 +
</source>
 
|description=Returns 1 (true) if the quantities or all their components do not differ by the margin value, or 1e-6, if margin is not provided. Returns 0 (false) otherwise.
 
|description=Returns 1 (true) if the quantities or all their components do not differ by the margin value, or 1e-6, if margin is not provided. Returns 0 (false) otherwise.
 
  |additional_info=Implemented November 20, 2018
 
  |additional_info=Implemented November 20, 2018
 
}}
 
}}

Revision as of 14:54, 20 February 2019

integer osApproxEquals(float a, float b)

integer osApproxEquals(vector va, vector vb)
integer osApproxEquals(rotation ra, rotation rb)
integer osApproxEquals(float a, float b, float margin)
integer osApproxEquals(vector va, vector vb, float margin)
integer osApproxEquals(rotation ra, rotation rb, float margin)

Returns 1 (true) if the quantities or all their components do not differ by the margin value, or 1e-6, if margin is not provided. Returns 0 (false) otherwise.
Threat Level None
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
if(osApproxEquals(pos, otherpos)) // on Xengine use if(osApproxEquals(pos, otherpos) == 1)
    llOwnerSay("Positions are equal");
...
Notes
Implemented November 20, 2018
Personal tools
General
About This Wiki