FACT++  1.0
void eraPpsp ( double  a[3],
double  s,
double  b[3],
double  apsb[3] 
)

Definition at line 3 of file ppsp.c.

References eraPpp(), and eraSxp().

Referenced by eraLdn(), eraPvu(), and t_ppsp().

29 {
30  double sb[3];
31 
32 /* s*b. */
33  eraSxp(s, b, sb);
34 
35 /* a + s*b. */
36  eraPpp(a, sb, apsb);
37 
38  return;
39 
40 }
void eraPpp(double a[3], double b[3], double apb[3])
Definition: ppp.c:3
void eraSxp(double s, double p[3], double sp[3])
Definition: sxp.c:3

+ Here is the call graph for this function:

+ Here is the caller graph for this function: