Difference between revisions of "ListToWholeNumbers"
Jump to navigation
Jump to search
Ugleh Ulrik (talk | contribs) |
m (<lsl> tag to <source>) |
||
(One intermediate revision by one other user not shown) | |||
Line 9: | Line 9: | ||
See also: [[List|Lists]] | See also: [[List|Lists]] | ||
|examples= | |examples= | ||
< | <source lang="lsl2">list myWholeNumberList = ListToWholeNumbers( [1.04, 10.789, 4.643] );//yields [1,10,4]</source> | ||
|spec=< | |spec=<source lang="lsl2">list ListToWholeNumbers(list myList) | ||
{ | { | ||
integer ListLength = llGetListLength(myList); | integer ListLength = llGetListLength(myList); | ||
Line 25: | Line 25: | ||
} | } | ||
return myList; | return myList; | ||
}</ | }</source> | ||
|helpers | |helpers | ||
|also_functions | |also_functions | ||
Line 34: | Line 34: | ||
|notes | |notes | ||
|cat1=Examples | |cat1=Examples | ||
|cat2= | |cat2=User-Defined Functions | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 14:22, 22 January 2015
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Summary
Function: list ListToWholeNumbers( list mylist );
Takes a list and truncates each float in the list so that it is a whole number.
Returns a list that contains the elements of myList but with the float elements having their fractional parts removed.
• list | mylist |
See also: Lists
Specification
list ListToWholeNumbers(list myList)
{
integer ListLength = llGetListLength(myList);
integer i = -1;
while (++i < ListLength)
{
if(TYPE_FLOAT == llGetListEntryType(myList, i))
{
float f = llList2Float(myList, i);
if(llFabs(f) < 0x1000000)//can it have an fpart?
f = (integer)f;
myList = (myList = []) + llListReplaceList(myList, (list)f, i, i);
}
}
return myList;
}
Examples
list myWholeNumberList = ListToWholeNumbers( [1.04, 10.789, 4.643] );//yields [1,10,4]