Changeset 54 for trunk/orca/math3d.c
- Timestamp:
- 02/17/06 15:30:01 (3 years ago)
- Files:
-
- 1 modified
-
trunk/orca/math3d.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/orca/math3d.c
r42 r54 288 288 if( it->type == OT_INTEGER ) 289 289 { 290 *vec++ = (float) it->integer;290 *vec++ = (float) orInt(it); 291 291 VEND; 292 292 } 293 293 else if( it->type == OT_DECIMAL ) 294 294 { 295 *vec++ = (float) it->num.decimal;295 *vec++ = (float) orDecimal(it); 296 296 VEND; 297 297 } … … 325 325 326 326 orSetTF( a1, OT_DECIMAL ); 327 a1->num.decimal= (double) orDot(a, b);327 orDecimal(a1) = (double) orDot(a, b); 328 328 } 329 329
