ISCE_INSAR/library/isceLib/include/Position.h

20 lines
305 B
C
Raw Permalink Normal View History

2019-01-16 19:40:08 +00:00
//
// Author: Joshua Cohen
// Copyright 2017
//
#ifndef ISCELIB_POSITION_H
#define ISCELIB_POSITION_H
namespace isceLib {
struct Position {
double j[3], jdot[3], jddt[3];
Position();
Position(const Position&);
void lookVec(double,double,double[3]);
};
}
#endif