re-added the empty constructor to marker face...
This commit is contained in:
parent
7616955d64
commit
3d6857a0b0
|
@ -58,6 +58,7 @@ namespace vcg {
|
|||
class FaceTmark:public Tmark<MESH_TYPE,typename MESH_TYPE::FaceType>
|
||||
{
|
||||
public:
|
||||
FaceTmark(){}
|
||||
FaceTmark(MESH_TYPE *m) {this->SetMesh(m);}
|
||||
};
|
||||
|
||||
|
@ -279,8 +280,7 @@ namespace vcg {
|
|||
OBJPTRCONTAINER & _objectPtrs)
|
||||
{
|
||||
typedef FaceTmark<MESH> MarkerFace;
|
||||
MarkerFace mf;
|
||||
mf.SetMesh(&mesh);
|
||||
MarkerFace mf(&mesh);
|
||||
return(gr.GetInBox/*<MarkerFace,OBJPTRCONTAINER>*/(mf,_bbox,_objectPtrs));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue