update
This commit is contained in:
parent
618ce59233
commit
13d40e886e
2
lib.nas
2
lib.nas
|
@ -140,7 +140,7 @@ var math=
|
|||
sqrt: func(x) {return __builtin_sqrt(x); },
|
||||
atan2: func(x,y){return __builtin_atan2(x,y);},
|
||||
inf: 1/0,
|
||||
nan: 1/0-1/0,
|
||||
nan: 0/0,
|
||||
isnan: func(x) {return __builtin_isnan(x); }
|
||||
};
|
||||
|
||||
|
|
|
@ -140,7 +140,7 @@ var math=
|
|||
sqrt: func(x) {return __builtin_sqrt(x); },
|
||||
atan2: func(x,y){return __builtin_atan2(x,y);},
|
||||
inf: 1/0,
|
||||
nan: 1/0-1/0,
|
||||
nan: 0/0,
|
||||
isnan: func(x) {return __builtin_isnan(x); }
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue