We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In export_dxf.h for(i=mp->edges.begin(); i!=mp->edges.end();++i) do not compile for a edge mesh defined as follows
for(i=mp->edges.begin(); i!=mp->edges.end();++i)
class MyEdgeMesh: public tri::TriMesh< vector<MyVertex>, vector<MyEdge> > {};
since it doesn't have egdes as member. But it has edge and successfully export dxf.
egdes
edge
Is it an error in dxf_exporter.h
dxf_exporter.h
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In export_dxf.h
for(i=mp->edges.begin(); i!=mp->edges.end();++i)
do not compile for a edge mesh defined as followsclass MyEdgeMesh: public tri::TriMesh< vector<MyVertex>, vector<MyEdge> > {};
since it doesn't have
egdes
as member. But it hasedge
and successfully export dxf.Is it an error in
dxf_exporter.h
The text was updated successfully, but these errors were encountered: