Skip to content

Commit 167ad8d

Browse files
Mafo369dlyr
authored andcommitted
[tests] Small cleanup
1 parent 8c6ff55 commit 167ad8d

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

examples/CurveEditor/CurveEditor.hpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ class CurveEditor : public Ra::Engine::Scene::Entity
5858
m_currentPoint = -1;
5959
}
6060

61-
void resetSavedPoint() { m_savedPoint = -1; }
62-
6361
PointComponent* getSavedPoint() {
6462
if ( m_savedPoint >= 0 )
6563
return m_pointEntities[m_savedPoint];
@@ -104,6 +102,7 @@ class CurveEditor : public Ra::Engine::Scene::Entity
104102
const Ra::Core::Vector3& newPoint = Ra::Core::Vector3::Zero() );
105103

106104
void smoothify( int pointId );
105+
107106
void symmetrize( int pointId );
108107

109108
private:
@@ -116,8 +115,5 @@ class CurveEditor : public Ra::Engine::Scene::Entity
116115
Ra::Engine::Rendering::RenderObjectManager* m_roMgr;
117116
int m_savedPoint { -1 };
118117

119-
bool m_smooth { false };
120-
bool m_symetry { false };
121-
122118
MyViewer* m_viewer { nullptr };
123119
};

0 commit comments

Comments
 (0)