Changeset 94 for trunk/orca/math3d.c

Show
Ignore:
Timestamp:
03/17/06 22:41:34 (3 years ago)
Author:
krobillard
Message:

All natives now use the OR_NATIVE macro.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/orca/math3d.c

    r54 r94  
    319319 
    320320 
    321 void orDotNative( OValue* a1 ) 
     321OR_NATIVE_PUB( orDotNative ) 
    322322{ 
    323323    float* a = &a1->vec3.x; 
     
    329329 
    330330 
    331 void orCrossNative( OValue* a1 ) 
     331OR_NATIVE_PUB( orCrossNative ) 
    332332{ 
    333333    float* a = &a1->vec3.x; 
     
    340340 
    341341 
    342 void orNormalizeNative( OValue* a1 ) 
     342OR_NATIVE_PUB( orNormalizeNative ) 
    343343{ 
    344344    orNormalize( &a1->vec3.x );