Renaming
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
#include "Node.hpp"
|
||||
|
||||
class Mesh{
|
||||
std::vector<std::vector<Node*>> _mesh;
|
||||
std::vector<Node*> _hlines;
|
||||
std::vector<Node*> _vlines;
|
||||
Object& _obj;
|
||||
double _step;
|
||||
std::vector<std::vector<Node*>> mesh;
|
||||
std::vector<Node*> hlines;
|
||||
std::vector<Node*> vlines;
|
||||
Object& obj;
|
||||
double step;
|
||||
void LinkX();
|
||||
void LinkY();
|
||||
void Delnode(int, int);
|
||||
@@ -21,9 +21,9 @@ public:
|
||||
~Mesh();
|
||||
//void ShowLinks();
|
||||
|
||||
std::vector<std::vector<Node*>>& Nodes() { return _mesh; }
|
||||
std::vector<Node*>& LineX() { return _hlines; }
|
||||
std::vector<Node*>& LineY() { return _vlines; }
|
||||
std::vector<std::vector<Node*>>& Nodes() { return mesh; }
|
||||
std::vector<Node*>& LineX() { return hlines; }
|
||||
std::vector<Node*>& LineY() { return vlines; }
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user