From 656848ec707139b7cd9d3573cc89145f55fba8ae Mon Sep 17 00:00:00 2001 From: Cyrille Valladeau <cyrille.valladeau@c-s.fr> Date: Fri, 16 Oct 2009 10:31:43 +0200 Subject: [PATCH] ENH : change circle center representation solution --- Code/Visualization/otbCircleGlComponent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Visualization/otbCircleGlComponent.h b/Code/Visualization/otbCircleGlComponent.h index 199ffe2422..6a4352dfb9 100644 --- a/Code/Visualization/otbCircleGlComponent.h +++ b/Code/Visualization/otbCircleGlComponent.h @@ -43,7 +43,7 @@ namespace otb /** \class CircleGlComponent * \brief This Gl Component to render a Circle. * No checking is done upon the adequation between the Circle -* projection and the underlying image projection. +* projection and the underlying image projection. Gie possibility to represnts the circle center (by a point or a cross) * * Origin and Spacing allows to fit to the image axis. * \ingroup Visualization @@ -69,7 +69,7 @@ public: typedef std::vector<IndexType> IndexListType; typedef std::vector<ColorType> ColorListType; - typedef enum { CIRCLE, CROSS } CenterRepresentationEnumType; + typedef enum { NO, CIRCLE, CROSS } CenterRepresentationEnumType; /** Runtime information */ itkTypeMacro(CircleGlComponent,GlComponent); -- GitLab