diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2018-07-05 20:35:55 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2018-07-05 20:35:55 (GMT) |
commit | 2c5f4cc8ba58a99e5c2f249805fbf53ea149b2f5 (patch) | |
tree | d0a21eff5511fc95264699618d54b11f3c8c08a9 | |
parent | 15ba04b1d129807c95c65c7910970e62d0df65b0 (diff) | |
download | blt-2c5f4cc8ba58a99e5c2f249805fbf53ea149b2f5.zip blt-2c5f4cc8ba58a99e5c2f249805fbf53ea149b2f5.tar.gz blt-2c5f4cc8ba58a99e5c2f249805fbf53ea149b2f5.tar.bz2 |
fix issue with 3d coords
-rw-r--r-- | tksao/util/util.C | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tksao/util/util.C b/tksao/util/util.C index d4bcac7..ebcd746 100644 --- a/tksao/util/util.C +++ b/tksao/util/util.C @@ -169,7 +169,7 @@ Vector zero360(const Vector& vv) Vector3d zero360(const Vector3d& vv) { - Vector out = vv; + Vector3d out = vv; // we want the first coord to be 0-360 out[0] = zero360(out[0]); return out; |