Changeset 313 for trunk/thune/doc

Show
Ignore:
Timestamp:
12/03/06 05:12:57 (2 years ago)
Author:
krobillard
Message:

Thune - Updated UserManual?

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/thune/doc/UserManual

    r299 r313  
    7575block!       []  [a b c] 
    7676paren!       ()  (a b c) 
    77 array!       #[1 2 3] 
     77vector!      #[1 2 3]  #[-85.33 2 44.8] 
    7878function!    [2 add] proc :inc2 
    7979call!        
     
    122122 
    123123 
    124 Array 
    125 ----- 
    126  
    127 Arrays hold a series of 32-bit numbers using less memory than a block!. 
    128  
    129 All numbers in an array are either integers or floating point values.  If 
    130 any number is specified as a decimal!, all numbers will be floating point. 
     124Vector 
     125------ 
     126 
     127Vectors hold a series of numbers using less memory than a block!. 
     128 
     129All numbers in a vector are either 32-bit integers or floating point values. 
     130If any number is specified as a decimal!, all numbers will be floating point. 
    131131 
    132132 
     
    150150 
    151151Vec3 stores 3 floating point values. 
     152 
     153A Vec3 is specified as two or three decimal numbers separated by commas. 
     154If none of the numbers has a decimal point then the value will be a coord!. 
     155 
     156:: 
     157 
     158    0.0, 1.0     ; Third component will be 0.0 
     159    1.0,0,100 
    152160 
    153161