Browse Subversion Repository
Contents of /rangesCtrl/ConvertToGrid.h
Parent Directory
| Revision Log
Revision 383 -
( show annotations)
( download)
( as text)
Tue Dec 11 07:55:09 2012 UTC
(11 years, 4 months ago)
by satofumi
File MIME type: text/x-chdr
File size: 647 byte(s)
fix compile error
| 1 |
#ifndef CONVERT_TO_GRID2D_H |
| 2 |
#define CONVERT_TO_GRID2D_H |
| 3 |
|
| 4 |
/*! |
| 5 |
\file |
| 6 |
\brief 距離データの X-Y 平面展開 |
| 7 |
|
| 8 |
\author Satofumi KAMIMURA |
| 9 |
|
| 10 |
$Id$ |
| 11 |
|
| 12 |
\todo ファイル名を何に変更すべきか検討し、変更する |
| 13 |
*/ |
| 14 |
|
| 15 |
#include "GridTypes.h" |
| 16 |
#include <vector> |
| 17 |
#include <cstddef> |
| 18 |
|
| 19 |
namespace beego { |
| 20 |
class RangeSensorInterface; |
| 21 |
|
| 22 |
/*! |
| 23 |
\brief 取得データの2次元変換 |
| 24 |
*/ |
| 25 |
extern void convertToGrid(std::vector<Grid<int> >& points, |
| 26 |
long data[], size_t size, |
| 27 |
const RangeSensorInterface* ranges, |
| 28 |
const Position<int>& offset = Position<int>()); |
| 29 |
}; |
| 30 |
|
| 31 |
#endif /* !CONVERT_TO_GRID2D_H */ |
|