Changeset 243 for trunk/thune/make.c
- Timestamp:
- 07/31/06 15:03:05 (2 years ago)
- Files:
-
- 1 modified
-
trunk/thune/make.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/thune/make.c
r241 r243 906 906 { 907 907 if( ur_is(it, UT_DECIMAL) ) 908 res->vec3.xyz[ len++ ] = ur_decimal(it);908 res->vec3.xyz[ len++ ] = (float) ur_decimal(it); 909 909 else if( ur_is(it, UT_INT) ) 910 res->vec3.xyz[ len++ ] = ( double) ur_int(it);910 res->vec3.xyz[ len++ ] = (float) ur_int(it); 911 911 if( len == 3 ) 912 912 break;
