Ignore:
Timestamp:
07/13/17 16:09:13 (8 years ago)
Author:
Mathieu Morlighem
Message:

CHG: getting rid of IcoorX

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/bamg/det.h

    r15061 r21791  
    66namespace bamg {
    77
    8         Icoor2 inline det(const I2 &a,const I2 & b,const I2 &c){
    9                 Icoor2 bax = b.x - a.x ,bay = b.y - a.y;
    10                 Icoor2 cax = c.x - a.x ,cay = c.y - a.y;
     8        long long inline det(const I2 &a,const I2 & b,const I2 &c){
     9                long long bax = b.x - a.x ,bay = b.y - a.y;
     10                long long cax = c.x - a.x ,cay = c.y - a.y;
    1111                return  bax*cay - bay*cax;
    1212        }
Note: See TracChangeset for help on using the changeset viewer.