@@ -282,7 +282,7 @@ namespace pcl
282
282
" addCoordinateSystem (scale, viewport) is deprecated, please use function "
283
283
" addCoordinateSystem (scale, id, viewport) with id a unique string identifier." )
284
284
void
285
- addCoordinateSystem (double scale, int viewport = 0 );
285
+ addCoordinateSystem (double scale, int viewport);
286
286
287
287
/* * \brief Adds 3D axes describing a coordinate system to screen at 0,0,0.
288
288
* \param[in] scale the scale of the axes (default: 1)
@@ -303,7 +303,7 @@ namespace pcl
303
303
" addCoordinateSystem (scale, x, y, z, viewport) is deprecated, please use function "
304
304
" addCoordinateSystem (scale, x, y, z, id, viewport) with id a unique string identifier." )
305
305
void
306
- addCoordinateSystem (double scale, float x, float y, float z, int viewport = 0 );
306
+ addCoordinateSystem (double scale, float x, float y, float z, int viewport);
307
307
308
308
/* * \brief Adds 3D axes describing a coordinate system to screen at x, y, z
309
309
* \param[in] scale the scale of the axes (default: 1)
@@ -326,7 +326,7 @@ namespace pcl
326
326
" addCoordinateSystem (scale, t, viewport) is deprecated, please use function "
327
327
" addCoordinateSystem (scale, t, id, viewport) with id a unique string identifier." )
328
328
void
329
- addCoordinateSystem (double scale, const Eigen::Affine3f& t, int viewport = 0 );
329
+ addCoordinateSystem (double scale, const Eigen::Affine3f& t, int viewport);
330
330
331
331
/* * \brief Adds 3D axes describing a coordinate system to screen at x, y, z, Roll,Pitch,Yaw
332
332
*
@@ -373,7 +373,7 @@ namespace pcl
373
373
" removeCoordinateSystem (viewport) is deprecated, please use function "
374
374
" addCoordinateSystem (id, viewport) with id a unique string identifier." )
375
375
bool
376
- removeCoordinateSystem (int viewport = 0 );
376
+ removeCoordinateSystem (int viewport);
377
377
378
378
/* * \brief Removes a previously added 3D axes (coordinate system)
379
379
* \param[in] id the coordinate system object id (default: reference)
0 commit comments