Skip to content

Commit

Permalink
Fix variable naming
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolausDemmel committed Aug 2, 2018
1 parent a3878ef commit 45b3151
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class DoubleSphereProjection {
/// \brief Default constructor
DoubleSphereProjection();

DoubleSphereProjection(double xi1, double xi2, double focalLengthU, double focalLengthV,
DoubleSphereProjection(double xi, double alpha, double focalLengthU, double focalLengthV,
double imageCenterU, double imageCenterV, int resolutionU,
int resolutionV, distortion_t distortion);

DoubleSphereProjection(double xi1, double xi2, double focalLengthU, double focalLengthV,
DoubleSphereProjection(double xi, double alpha, double focalLengthU, double focalLengthV,
double imageCenterU, double imageCenterV, int resolutionU,
int resolutionV);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ class ExtendedUnifiedProjection {
/// \brief Default constructor
ExtendedUnifiedProjection();

ExtendedUnifiedProjection(double xi1, double xi2, double focalLengthU, double focalLengthV,
ExtendedUnifiedProjection(double alpha, double beta, double focalLengthU, double focalLengthV,
double imageCenterU, double imageCenterV, int resolutionU,
int resolutionV, distortion_t distortion);

ExtendedUnifiedProjection(double xi1, double xi2, double focalLengthU, double focalLengthV,
ExtendedUnifiedProjection(double alpha, double beta, double focalLengthU, double focalLengthV,
double imageCenterU, double imageCenterV, int resolutionU,
int resolutionV);

Expand Down

0 comments on commit 45b3151

Please sign in to comment.