Ignore:
Timestamp:
Jul 5, 2013 12:50:55 PM (11 years ago)
Author:
ldelgass
Message:

add convenience functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/Math.h

    r3616 r3744  
    217217}
    218218
     219inline double min3(double a, double b, double c)
     220{
     221    return min2(min2(a, b), c);
     222}
     223
     224inline double max3(double a, double b, double c)
     225{
     226    return max2(max2(a, b), c);
     227}
     228
    219229}
    220230
Note: See TracChangeset for help on using the changeset viewer.