In the wiki, it says like this.
Open ElementClasses.h in the editor of your choice (Visual Studio for windows users). ElementClasses.h is located under Source Files -> generated in the Solution Explorer. Double click it to open it up. You will see a file that should have a big list of #define PT_XXXX Y.
However, mine looks like this.
#ifndef ELEMENTCLASSES_H
#define ELEMENTCLASSES_H
#include <vector>
#include "SimulationData.h"
#include "Element.h"
#define ELEMENT_NUMBERS_ENUMERATE
#include "ElementNumbers.h"
#undef ELEMENT_NUMBERS_ENUMERATE
std::vector<Element> const &GetElements();
#endif
Any help?
There's no such file, although there is one at src/simulation/meson.build
but it doesn't have something like PT_XXXX Y.
Thanks.