mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
Data Exchange - RWMesh_CafReader deferred loading issue for no faces #339
Fixed issue when trying to apply deferred loading for edges or vertexes.
This commit is contained in:
parent
bfb00b243e
commit
4b318b8bf6
@ -160,6 +160,11 @@ bool RWMesh_TriangulationReader::setNbEdges(const Handle(Poly_Triangulation)& th
|
||||
const Standard_Boolean theToCopyData) const
|
||||
{
|
||||
Handle(RWMesh_TriangulationSource) aMesh = Handle(RWMesh_TriangulationSource)::DownCast(theMesh);
|
||||
if (aMesh.IsNull())
|
||||
{
|
||||
Message::SendWarning("Only triangulation loading is supported.");
|
||||
return false;
|
||||
}
|
||||
if (theNbTris >= 1)
|
||||
{
|
||||
aMesh->ResizeEdges(theNbTris, theToCopyData);
|
||||
@ -175,6 +180,11 @@ Standard_Integer RWMesh_TriangulationReader::setEdge(const Handle(Poly_Triangula
|
||||
const Standard_Integer theEdge) const
|
||||
{
|
||||
Handle(RWMesh_TriangulationSource) aMesh = Handle(RWMesh_TriangulationSource)::DownCast(theMesh);
|
||||
if (aMesh.IsNull())
|
||||
{
|
||||
Message::SendWarning("Only triangulation loading is supported.");
|
||||
return 0;
|
||||
}
|
||||
if (theEdge < 1 || theEdge > theMesh->NbNodes())
|
||||
{
|
||||
return 0;
|
||||
|
@ -44,13 +44,7 @@ Standard_Boolean RWMesh_TriangulationSource::loadDeferredData(
|
||||
{
|
||||
return false;
|
||||
}
|
||||
Handle(RWMesh_TriangulationSource) aDestTriangulation =
|
||||
Handle(RWMesh_TriangulationSource)::DownCast(theDestTriangulation);
|
||||
if (aDestTriangulation.IsNull())
|
||||
{
|
||||
return false;
|
||||
}
|
||||
if (myReader->Load(this, aDestTriangulation, theFileSystem))
|
||||
if (myReader->Load(this, theDestTriangulation, theFileSystem))
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user