Skip to content

Commit

Permalink
Merge branch 'master' into fixCanny
Browse files Browse the repository at this point in the history
  • Loading branch information
rlagneau committed Nov 30, 2023
2 parents ac4a09f + e49493a commit 2b4e240
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,12 @@ void vpTemplateTrackerMIBSpline::PutTotPVBspline4(double *Prt, double *dPrt, dou
double Bti[4];
double dBti[4];
double d2Bti[4];

for (size_t i = 0; i < 4; ++i) {
Bti[i] = 0.;
dBti[i] = 0.;
d2Bti[i] = 0.;
}

double *ptBti = &Bti[0];
double *ptdBti = &dBti[0];
Expand Down

0 comments on commit 2b4e240

Please sign in to comment.