@@ -42,8 +42,8 @@ template <typename TPoint>
4242void SpeedFunctionPathInformation<TPoint>
4343::ClearInfo ()
4444{
45- m_Info .clear ();
46- m_Info .resize (2 );
45+ m_Information .clear ();
46+ m_Information .resize (2 );
4747 m_Front = 1 ;
4848}
4949
@@ -52,23 +52,23 @@ template <typename TPoint>
5252void SpeedFunctionPathInformation<TPoint>
5353::SetStartPoint ( const PointType & start )
5454{
55- m_Info [1 ] = start;
55+ m_Information [1 ] = start;
5656}
5757
5858
5959template <typename TPoint>
6060void SpeedFunctionPathInformation<TPoint>
6161::SetEndPoint ( const PointType & end )
6262{
63- m_Info [0 ] = end;
63+ m_Information [0 ] = end;
6464}
6565
6666
6767template <typename TPoint>
6868void SpeedFunctionPathInformation<TPoint>
6969::AddWayPoint ( const PointType & way )
7070{
71- m_Info .push_back ( way );
71+ m_Information .push_back ( way );
7272 m_Front++;
7373}
7474
@@ -77,7 +77,7 @@ template <typename TPoint>
7777unsigned int SpeedFunctionPathInformation<TPoint>
7878::GetNumberOfPoints ( ) const
7979{
80- return m_Info .size ();
80+ return m_Information .size ();
8181}
8282
8383
@@ -86,7 +86,7 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
8686SpeedFunctionPathInformation<TPoint>
8787::GetStartPoint ( ) const
8888{
89- return m_Info [1 ];
89+ return m_Information [1 ];
9090}
9191
9292
@@ -95,7 +95,7 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
9595SpeedFunctionPathInformation<TPoint>
9696::GetEndPoint ( ) const
9797{
98- return m_Info [0 ];
98+ return m_Information [0 ];
9999}
100100
101101
@@ -104,7 +104,7 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
104104SpeedFunctionPathInformation<TPoint>
105105::GetWayPoint ( SizeValueType i ) const
106106{
107- return m_Info [2 +i];
107+ return m_Information [2 +i];
108108}
109109
110110
@@ -122,7 +122,7 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
122122SpeedFunctionPathInformation<TPoint>
123123::GetCurrentFrontAndAdvance ( )
124124{
125- return m_Info [m_Front--];
125+ return m_Information [m_Front--];
126126}
127127
128128
@@ -131,7 +131,7 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
131131SpeedFunctionPathInformation<TPoint>
132132::PeekCurrentFront ( ) const
133133{
134- return m_Info [m_Front];
134+ return m_Information [m_Front];
135135}
136136
137137
@@ -142,11 +142,11 @@ SpeedFunctionPathInformation<TPoint>
142142{
143143 if ( m_Front <= 1 )
144144 {
145- return m_Info [1 ];
145+ return m_Information [1 ];
146146 }
147147 else
148148 {
149- return m_Info [m_Front-1 ];
149+ return m_Information [m_Front-1 ];
150150 }
151151}
152152
@@ -156,13 +156,13 @@ const typename SpeedFunctionPathInformation<TPoint>::PointType &
156156SpeedFunctionPathInformation<TPoint>
157157::PeekPreviousFront ( ) const
158158{
159- if ( m_Front == m_Info .size ()-1 )
159+ if ( m_Front == m_Information .size ()-1 )
160160 {
161- return m_Info [0 ];
161+ return m_Information [0 ];
162162 }
163163 else
164164 {
165- return m_Info [m_Front+1 ];
165+ return m_Information [m_Front+1 ];
166166 }
167167}
168168
0 commit comments