Changeset 313 for trunk/thune/doc
- Timestamp:
- 12/03/06 05:12:57 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/doc/UserManual (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/doc/UserManual
r299 r313 75 75 block! [] [a b c] 76 76 paren! () (a b c) 77 array! #[1 2 3]77 vector! #[1 2 3] #[-85.33 2 44.8] 78 78 function! [2 add] proc :inc2 79 79 call! … … 122 122 123 123 124 Array 125 ----- 126 127 Arrays hold a series of 32-bitnumbers using less memory than a block!.128 129 All numbers in a n array are either integers or floating point values. If130 any number is specified as a decimal!, all numbers will be floating point.124 Vector 125 ------ 126 127 Vectors hold a series of numbers using less memory than a block!. 128 129 All numbers in a vector are either 32-bit integers or floating point values. 130 If any number is specified as a decimal!, all numbers will be floating point. 131 131 132 132 … … 150 150 151 151 Vec3 stores 3 floating point values. 152 153 A Vec3 is specified as two or three decimal numbers separated by commas. 154 If 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 152 160 153 161
