class Triangle : public IShape
{
public:
Triangle(const Transform *o2w, TriangleMesh* pTriangleMesh, int firstVertexIndex) :
IShape(o2w),
m_pTriangleMesh(pTriangleMesh),
m_iFirstVertexIndex(firstVertexIndex) // <- HERE
{
}
...
If I use the "Create From Usage" feature where I marked the code with HERE then the pop-up dialog box suggest me:
quote:
Create:
(*) Methode in Triangle
( ) Function
Declare method:
void m_iFirstVertexIndex(int firstVertexIndex)
what I really want is a member variable int m_iFirstVertexIndex - maybe this could be added to VAssistX