Advertisement
lucasgautheron

Untitled

Jun 5th, 2011
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.00 KB | None | 0 0
  1.         <command name="round">
  2.           <description>Round the given float</description>
  3.           <arguments>
  4.             <argument token="F" description="The float number to round" valueNotes=""/>
  5.           </arguments>
  6.           <return token="I" description="The rounded integer" valueNotes="The precision is 1 unit"/>
  7.         </command>
  8.  
  9.         <command name="ceil">
  10.           <description>Upper value of a float number</description>
  11.           <arguments>
  12.             <argument token="F" description="The float number to get the ceil from" valueNotes=""/>
  13.           </arguments>
  14.           <return token="I" description="The ceil value (integer)"/>
  15.         </command>
  16.  
  17.         <command name="floor">
  18.           <description>Floor value of a float number</description>
  19.           <arguments>
  20.             <argument token="F" description="The float number to get the floor from" valueNotes=""/>
  21.           </arguments>
  22.           <return token="I" description="The floor value (integer)"/>
  23.         </command>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement