diff options
author | Erik Schnetter <schnetter@gmail.com> | 2013-06-06 12:05:53 -0400 |
---|---|---|
committer | Erik Schnetter <schnetter@gmail.com> | 2013-06-06 12:05:53 -0400 |
commit | 54c489d1d75b0df4314e94cdc25e283434e72cbc (patch) | |
tree | 2b3ad691f40af922a51bd231f3457dcc30a1115a /vec_double_sse2_scalar.h | |
parent | 9600cc42c75a8bdf42a078c63a83fd7953cdc903 (diff) | |
download | vecmathlib-54c489d1d75b0df4314e94cdc25e283434e72cbc.zip vecmathlib-54c489d1d75b0df4314e94cdc25e283434e72cbc.tar.gz |
Implement atan2
Diffstat (limited to 'vec_double_sse2_scalar.h')
-rw-r--r-- | vec_double_sse2_scalar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vec_double_sse2_scalar.h b/vec_double_sse2_scalar.h index 948f242..b4b0a46 100644 --- a/vec_double_sse2_scalar.h +++ b/vec_double_sse2_scalar.h @@ -381,6 +381,7 @@ namespace vecmathlib { realvec asin() const { return MF::vml_asin(*this); } realvec asinh() const { return MF::vml_asinh(*this); } realvec atan() const { return MF::vml_atan(*this); } + realvec atan2(realvec y) const { return MF::vml_atan2(*this, y); } realvec atanh() const { return MF::vml_atanh(*this); } realvec cbrt() const { return MF::vml_cbrt(*this); } realvec ceil() const |