Skip to content

Commit

Permalink
utilisation defin à la place de la valeur en brute
Browse files Browse the repository at this point in the history
  • Loading branch information
trecouvr committed May 16, 2012
1 parent 6f10f41 commit 5ef1bd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executables/hokuyo/driver/src/urgDriverCompute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void UrgDriver::interpretData(const std::vector<long> & data, int n)
c.x = l*cos(radian) + deltaX;
c.y = l*sin(radian) + deltaY;
if (color==BLEU) {
c.x = 3000 - c.x;
c.x = LX - c.x;
}

#if DEBUG
Expand Down

0 comments on commit 5ef1bd3

Please sign in to comment.