mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Data Exchange - Fix GLTF Export for vertices and edges
Only free vertices and edges are exported now
This commit is contained in:
parent
12f9019180
commit
366b40efa1
@ -852,18 +852,14 @@ bool RWGltf_CafWriter::writeBinData(const Handle(TDocStd_Document)& theDocument,
|
|||||||
|
|
||||||
// transformation will be stored at scene nodes
|
// transformation will be stored at scene nodes
|
||||||
aMergedFaces.Clear(false);
|
aMergedFaces.Clear(false);
|
||||||
|
|
||||||
Standard_Integer aBinDataSize = myBinDataMap.Size();
|
|
||||||
{
|
{
|
||||||
RWMesh_FaceIterator aFaceIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_FaceIterator aFaceIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, aFaceIter);
|
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, aFaceIter);
|
||||||
}
|
}
|
||||||
if (aBinDataSize == myBinDataMap.Size())
|
|
||||||
{
|
{
|
||||||
RWMesh_EdgeIterator anEdgeIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_EdgeIterator anEdgeIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, anEdgeIter);
|
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, anEdgeIter);
|
||||||
}
|
}
|
||||||
if (aBinDataSize == myBinDataMap.Size())
|
|
||||||
{
|
{
|
||||||
RWMesh_VertexIterator aVertexIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_VertexIterator aVertexIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, aVertexIter);
|
dispatchShapes(aDocNode, aPSentryBin, aMergedFaces, aVertexIter);
|
||||||
@ -1936,13 +1932,11 @@ void RWGltf_CafWriter::writeImages(const RWGltf_GltfSceneNodeMap& theSceneNodeMa
|
|||||||
//=================================================================================================
|
//=================================================================================================
|
||||||
|
|
||||||
void RWGltf_CafWriter::writeMaterial(RWMesh_ShapeIterator& theShapeIter,
|
void RWGltf_CafWriter::writeMaterial(RWMesh_ShapeIterator& theShapeIter,
|
||||||
Standard_Boolean& theIsStarted,
|
Standard_Boolean& theIsStarted)
|
||||||
Standard_Integer& theAddedMaterialsNb)
|
|
||||||
{
|
{
|
||||||
for (; theShapeIter.More(); theShapeIter.Next())
|
for (; theShapeIter.More(); theShapeIter.Next())
|
||||||
{
|
{
|
||||||
myMaterialMap->AddMaterial(myWriter.get(), theShapeIter.Style(), theIsStarted);
|
myMaterialMap->AddMaterial(myWriter.get(), theShapeIter.Style(), theIsStarted);
|
||||||
theAddedMaterialsNb++;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1959,21 +1953,18 @@ void RWGltf_CafWriter::writeMaterials(const RWGltf_GltfSceneNodeMap& theSceneNod
|
|||||||
for (RWGltf_GltfSceneNodeMap::Iterator aSceneNodeIter(theSceneNodeMap); aSceneNodeIter.More();
|
for (RWGltf_GltfSceneNodeMap::Iterator aSceneNodeIter(theSceneNodeMap); aSceneNodeIter.More();
|
||||||
aSceneNodeIter.Next())
|
aSceneNodeIter.Next())
|
||||||
{
|
{
|
||||||
const XCAFPrs_DocumentNode& aDocNode = aSceneNodeIter.Value();
|
const XCAFPrs_DocumentNode& aDocNode = aSceneNodeIter.Value();
|
||||||
Standard_Integer anAddedMaterialsNb = 0;
|
|
||||||
{
|
{
|
||||||
RWMesh_FaceIterator aFaceIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_FaceIterator aFaceIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeMaterial(aFaceIter, anIsStarted, anAddedMaterialsNb);
|
writeMaterial(aFaceIter, anIsStarted);
|
||||||
}
|
}
|
||||||
if (anAddedMaterialsNb == 0)
|
|
||||||
{
|
{
|
||||||
RWMesh_EdgeIterator anEdgeIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_EdgeIterator anEdgeIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeMaterial(anEdgeIter, anIsStarted, anAddedMaterialsNb);
|
writeMaterial(anEdgeIter, anIsStarted);
|
||||||
}
|
}
|
||||||
if (anAddedMaterialsNb == 0)
|
|
||||||
{
|
{
|
||||||
RWMesh_VertexIterator VertexIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_VertexIterator VertexIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeMaterial(VertexIter, anIsStarted, anAddedMaterialsNb);
|
writeMaterial(VertexIter, anIsStarted);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (anIsStarted)
|
if (anIsStarted)
|
||||||
@ -2096,14 +2087,13 @@ void RWGltf_CafWriter::writePrimArray(const RWGltf_GltfFace& theGltfFace
|
|||||||
//=================================================================================================
|
//=================================================================================================
|
||||||
|
|
||||||
void RWGltf_CafWriter::writeShapes(RWMesh_ShapeIterator& theShapeIter,
|
void RWGltf_CafWriter::writeShapes(RWMesh_ShapeIterator& theShapeIter,
|
||||||
Standard_Integer& theNbFacesInNode,
|
|
||||||
Standard_Integer& theDracoBufInd,
|
Standard_Integer& theDracoBufInd,
|
||||||
Standard_Boolean& theToStartPrims,
|
Standard_Boolean& theToStartPrims,
|
||||||
const TCollection_AsciiString& theNodeName,
|
const TCollection_AsciiString& theNodeName,
|
||||||
NCollection_Map<Handle(RWGltf_GltfFaceList)>& theWrittenShapes,
|
NCollection_Map<Handle(RWGltf_GltfFaceList)>& theWrittenShapes,
|
||||||
NCollection_IndexedDataMap<int, int>& theDracoBufIndMap)
|
NCollection_IndexedDataMap<int, int>& theDracoBufIndMap)
|
||||||
{
|
{
|
||||||
for (; theShapeIter.More(); theShapeIter.Next(), ++theNbFacesInNode)
|
for (; theShapeIter.More(); theShapeIter.Next())
|
||||||
{
|
{
|
||||||
if (toSkipShape(theShapeIter))
|
if (toSkipShape(theShapeIter))
|
||||||
{
|
{
|
||||||
@ -2157,8 +2147,7 @@ void RWGltf_CafWriter::writeMeshes(const RWGltf_GltfSceneNodeMap& theSceneNodeMa
|
|||||||
const TCollection_AsciiString aNodeName =
|
const TCollection_AsciiString aNodeName =
|
||||||
formatName(myMeshNameFormat, aDocNode.Label, aDocNode.RefLabel);
|
formatName(myMeshNameFormat, aDocNode.Label, aDocNode.RefLabel);
|
||||||
|
|
||||||
bool toStartPrims = true;
|
bool toStartPrims = true;
|
||||||
Standard_Integer aNbShapes = 0;
|
|
||||||
aWrittenShapes.Clear(false);
|
aWrittenShapes.Clear(false);
|
||||||
if (myToMergeFaces)
|
if (myToMergeFaces)
|
||||||
{
|
{
|
||||||
@ -2201,35 +2190,15 @@ void RWGltf_CafWriter::writeMeshes(const RWGltf_GltfSceneNodeMap& theSceneNodeMa
|
|||||||
{
|
{
|
||||||
{
|
{
|
||||||
RWMesh_FaceIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_FaceIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeShapes(anIter,
|
writeShapes(anIter, aDracoBufInd, toStartPrims, aNodeName, aWrittenShapes, aDracoBufMap);
|
||||||
aNbShapes,
|
|
||||||
aDracoBufInd,
|
|
||||||
toStartPrims,
|
|
||||||
aNodeName,
|
|
||||||
aWrittenShapes,
|
|
||||||
aDracoBufMap);
|
|
||||||
}
|
}
|
||||||
if (aNbShapes == 0)
|
|
||||||
{
|
{
|
||||||
RWMesh_EdgeIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_EdgeIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeShapes(anIter,
|
writeShapes(anIter, aDracoBufInd, toStartPrims, aNodeName, aWrittenShapes, aDracoBufMap);
|
||||||
aNbShapes,
|
|
||||||
aDracoBufInd,
|
|
||||||
toStartPrims,
|
|
||||||
aNodeName,
|
|
||||||
aWrittenShapes,
|
|
||||||
aDracoBufMap);
|
|
||||||
}
|
}
|
||||||
if (aNbShapes == 0)
|
|
||||||
{
|
{
|
||||||
RWMesh_VertexIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
RWMesh_VertexIterator anIter(aDocNode.RefLabel, TopLoc_Location(), true, aDocNode.Style);
|
||||||
writeShapes(anIter,
|
writeShapes(anIter, aDracoBufInd, toStartPrims, aNodeName, aWrittenShapes, aDracoBufMap);
|
||||||
aNbShapes,
|
|
||||||
aDracoBufInd,
|
|
||||||
toStartPrims,
|
|
||||||
aNodeName,
|
|
||||||
aWrittenShapes,
|
|
||||||
aDracoBufMap);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -356,10 +356,8 @@ protected:
|
|||||||
//! Write RWGltf_GltfRootElement_Materials section.
|
//! Write RWGltf_GltfRootElement_Materials section.
|
||||||
//! @param[in] theShapeIter Shape iterator to traverse shapes
|
//! @param[in] theShapeIter Shape iterator to traverse shapes
|
||||||
//! @param[out] theIsStarted Flag indicating that writing material has been started
|
//! @param[out] theIsStarted Flag indicating that writing material has been started
|
||||||
//! @param[out] theAddedMaterialsNb Number of added materials
|
|
||||||
Standard_EXPORT virtual void writeMaterial(RWMesh_ShapeIterator& theShapeIter,
|
Standard_EXPORT virtual void writeMaterial(RWMesh_ShapeIterator& theShapeIter,
|
||||||
Standard_Boolean& theIsStarted,
|
Standard_Boolean& theIsStarted);
|
||||||
Standard_Integer& theAddedMaterialsNb);
|
|
||||||
|
|
||||||
//! Write RWGltf_GltfRootElement_Meshes section.
|
//! Write RWGltf_GltfRootElement_Meshes section.
|
||||||
//! @param[in] theSceneNodeMap ordered map of scene nodes
|
//! @param[in] theSceneNodeMap ordered map of scene nodes
|
||||||
@ -445,7 +443,6 @@ protected:
|
|||||||
|
|
||||||
//! Write shapes to RWGltf_GltfRootElement_Meshes section
|
//! Write shapes to RWGltf_GltfRootElement_Meshes section
|
||||||
//! @param[in] theShapeIter Shape iterator to traverse shapes
|
//! @param[in] theShapeIter Shape iterator to traverse shapes
|
||||||
//! @param[in,out] theNbFacesInNode Number of faces in the current node
|
|
||||||
//! @param[in,out] theDracoBufInd Draco buffer index
|
//! @param[in,out] theDracoBufInd Draco buffer index
|
||||||
//! @param[in,out] theToStartPrims Flag to indicate if primitives should be started
|
//! @param[in,out] theToStartPrims Flag to indicate if primitives should be started
|
||||||
//! @param[in] theNodeName Name of the current node
|
//! @param[in] theNodeName Name of the current node
|
||||||
@ -453,7 +450,6 @@ protected:
|
|||||||
//! @param[in,out] theDracoBufIndMap Map to store Draco buffer indices
|
//! @param[in,out] theDracoBufIndMap Map to store Draco buffer indices
|
||||||
Standard_EXPORT virtual void writeShapes(
|
Standard_EXPORT virtual void writeShapes(
|
||||||
RWMesh_ShapeIterator& theShapeIter,
|
RWMesh_ShapeIterator& theShapeIter,
|
||||||
Standard_Integer& theNbFacesInNode,
|
|
||||||
Standard_Integer& theDracoBufInd,
|
Standard_Integer& theDracoBufInd,
|
||||||
Standard_Boolean& theToStartPrims,
|
Standard_Boolean& theToStartPrims,
|
||||||
const TCollection_AsciiString& theNodeName,
|
const TCollection_AsciiString& theNodeName,
|
||||||
|
@ -25,7 +25,7 @@ RWMesh_EdgeIterator::RWMesh_EdgeIterator(const TDF_Label& theLabel,
|
|||||||
const TopLoc_Location& theLocation,
|
const TopLoc_Location& theLocation,
|
||||||
const Standard_Boolean theToMapColors,
|
const Standard_Boolean theToMapColors,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theLabel, theLocation, TopAbs_EDGE, theToMapColors, theStyle)
|
: RWMesh_ShapeIterator(theLabel, theLocation, TopAbs_EDGE, TopAbs_FACE, theToMapColors, theStyle)
|
||||||
{
|
{
|
||||||
Next();
|
Next();
|
||||||
}
|
}
|
||||||
@ -34,7 +34,7 @@ RWMesh_EdgeIterator::RWMesh_EdgeIterator(const TDF_Label& theLabel,
|
|||||||
|
|
||||||
RWMesh_EdgeIterator::RWMesh_EdgeIterator(const TopoDS_Shape& theShape,
|
RWMesh_EdgeIterator::RWMesh_EdgeIterator(const TopoDS_Shape& theShape,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theShape, TopAbs_EDGE, theStyle)
|
: RWMesh_ShapeIterator(theShape, TopAbs_EDGE, TopAbs_FACE, theStyle)
|
||||||
{
|
{
|
||||||
Next();
|
Next();
|
||||||
}
|
}
|
||||||
|
@ -26,7 +26,12 @@ RWMesh_FaceIterator::RWMesh_FaceIterator(const TDF_Label& theLabel,
|
|||||||
const TopLoc_Location& theLocation,
|
const TopLoc_Location& theLocation,
|
||||||
const Standard_Boolean theToMapColors,
|
const Standard_Boolean theToMapColors,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theLabel, theLocation, TopAbs_FACE, theToMapColors, theStyle),
|
: RWMesh_ShapeIterator(theLabel,
|
||||||
|
theLocation,
|
||||||
|
TopAbs_FACE,
|
||||||
|
TopAbs_SHAPE,
|
||||||
|
theToMapColors,
|
||||||
|
theStyle),
|
||||||
mySLTool(1, 1e-12),
|
mySLTool(1, 1e-12),
|
||||||
myHasNormals(false),
|
myHasNormals(false),
|
||||||
myIsMirrored(false)
|
myIsMirrored(false)
|
||||||
@ -38,7 +43,7 @@ RWMesh_FaceIterator::RWMesh_FaceIterator(const TDF_Label& theLabel,
|
|||||||
|
|
||||||
RWMesh_FaceIterator::RWMesh_FaceIterator(const TopoDS_Shape& theShape,
|
RWMesh_FaceIterator::RWMesh_FaceIterator(const TopoDS_Shape& theShape,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theShape, TopAbs_FACE, theStyle),
|
: RWMesh_ShapeIterator(theShape, TopAbs_FACE, TopAbs_SHAPE, theStyle),
|
||||||
mySLTool(1, 1e-12),
|
mySLTool(1, 1e-12),
|
||||||
myHasNormals(false),
|
myHasNormals(false),
|
||||||
myIsMirrored(false)
|
myIsMirrored(false)
|
||||||
|
@ -22,12 +22,13 @@
|
|||||||
|
|
||||||
RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
||||||
const TopLoc_Location& theLocation,
|
const TopLoc_Location& theLocation,
|
||||||
const TopAbs_ShapeEnum theShapeType,
|
const TopAbs_ShapeEnum theShapeTypeFind,
|
||||||
|
const TopAbs_ShapeEnum theShapeTypeAvoid,
|
||||||
const Standard_Boolean theToMapColors,
|
const Standard_Boolean theToMapColors,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: myDefStyle(theStyle),
|
: myDefStyle(theStyle),
|
||||||
myToMapColors(theToMapColors),
|
myToMapColors(theToMapColors),
|
||||||
myShapeType(theShapeType),
|
myShapeType(theShapeTypeFind),
|
||||||
myHasColor(false)
|
myHasColor(false)
|
||||||
{
|
{
|
||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
@ -37,7 +38,7 @@ RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
|||||||
}
|
}
|
||||||
|
|
||||||
aShape.Location(theLocation, false);
|
aShape.Location(theLocation, false);
|
||||||
myIter.Init(aShape, myShapeType);
|
myIter.Init(aShape, myShapeType, theShapeTypeAvoid);
|
||||||
|
|
||||||
if (theToMapColors)
|
if (theToMapColors)
|
||||||
{
|
{
|
||||||
@ -49,18 +50,19 @@ RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
|||||||
//=================================================================================================
|
//=================================================================================================
|
||||||
|
|
||||||
RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TopoDS_Shape& theShape,
|
RWMesh_ShapeIterator::RWMesh_ShapeIterator(const TopoDS_Shape& theShape,
|
||||||
const TopAbs_ShapeEnum theShapeType,
|
const TopAbs_ShapeEnum theShapeTypeFind,
|
||||||
|
const TopAbs_ShapeEnum theShapeTypeAvoid,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: myDefStyle(theStyle),
|
: myDefStyle(theStyle),
|
||||||
myToMapColors(true),
|
myToMapColors(true),
|
||||||
myShapeType(theShapeType),
|
myShapeType(theShapeTypeFind),
|
||||||
myHasColor(false)
|
myHasColor(false)
|
||||||
{
|
{
|
||||||
if (theShape.IsNull())
|
if (theShape.IsNull())
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
myIter.Init(theShape, myShapeType);
|
myIter.Init(theShape, myShapeType, theShapeTypeAvoid);
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================================
|
//=================================================================================================
|
||||||
@ -152,4 +154,9 @@ void RWMesh_ShapeIterator::initShape()
|
|||||||
myHasColor = true;
|
myHasColor = true;
|
||||||
myColor = myStyle.GetColorSurfRGBA();
|
myColor = myStyle.GetColorSurfRGBA();
|
||||||
}
|
}
|
||||||
|
else if (myStyle.IsSetColorCurv())
|
||||||
|
{
|
||||||
|
myHasColor = true;
|
||||||
|
myColor = Quantity_ColorRGBA(myStyle.GetColorCurv());
|
||||||
|
}
|
||||||
}
|
}
|
@ -88,13 +88,15 @@ protected:
|
|||||||
//! Main constructor.
|
//! Main constructor.
|
||||||
RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
RWMesh_ShapeIterator(const TDF_Label& theLabel,
|
||||||
const TopLoc_Location& theLocation,
|
const TopLoc_Location& theLocation,
|
||||||
const TopAbs_ShapeEnum theShapeType,
|
const TopAbs_ShapeEnum theShapeTypeFind,
|
||||||
|
const TopAbs_ShapeEnum theShapeTypeAvoid,
|
||||||
const Standard_Boolean theToMapColors = false,
|
const Standard_Boolean theToMapColors = false,
|
||||||
const XCAFPrs_Style& theStyle = XCAFPrs_Style());
|
const XCAFPrs_Style& theStyle = XCAFPrs_Style());
|
||||||
|
|
||||||
//! Auxiliary constructor.
|
//! Auxiliary constructor.
|
||||||
RWMesh_ShapeIterator(const TopoDS_Shape& theShape,
|
RWMesh_ShapeIterator(const TopoDS_Shape& theShape,
|
||||||
const TopAbs_ShapeEnum theShapeType,
|
const TopAbs_ShapeEnum theShapeTypeFind,
|
||||||
|
const TopAbs_ShapeEnum theShapeTypeAvoid,
|
||||||
const XCAFPrs_Style& theStyle = XCAFPrs_Style());
|
const XCAFPrs_Style& theStyle = XCAFPrs_Style());
|
||||||
|
|
||||||
//! Dispatch shape styles.
|
//! Dispatch shape styles.
|
||||||
|
@ -25,7 +25,12 @@ RWMesh_VertexIterator::RWMesh_VertexIterator(const TDF_Label& theLabel,
|
|||||||
const TopLoc_Location& theLocation,
|
const TopLoc_Location& theLocation,
|
||||||
const Standard_Boolean theToMapColors,
|
const Standard_Boolean theToMapColors,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theLabel, theLocation, TopAbs_VERTEX, theToMapColors, theStyle)
|
: RWMesh_ShapeIterator(theLabel,
|
||||||
|
theLocation,
|
||||||
|
TopAbs_VERTEX,
|
||||||
|
TopAbs_EDGE,
|
||||||
|
theToMapColors,
|
||||||
|
theStyle)
|
||||||
{
|
{
|
||||||
Next();
|
Next();
|
||||||
}
|
}
|
||||||
@ -34,7 +39,7 @@ RWMesh_VertexIterator::RWMesh_VertexIterator(const TDF_Label& theLabel,
|
|||||||
|
|
||||||
RWMesh_VertexIterator::RWMesh_VertexIterator(const TopoDS_Shape& theShape,
|
RWMesh_VertexIterator::RWMesh_VertexIterator(const TopoDS_Shape& theShape,
|
||||||
const XCAFPrs_Style& theStyle)
|
const XCAFPrs_Style& theStyle)
|
||||||
: RWMesh_ShapeIterator(theShape, TopAbs_VERTEX, theStyle)
|
: RWMesh_ShapeIterator(theShape, TopAbs_VERTEX, TopAbs_EDGE, theStyle)
|
||||||
{
|
{
|
||||||
Next();
|
Next();
|
||||||
}
|
}
|
||||||
|
@ -19,46 +19,12 @@ Close DD
|
|||||||
|
|
||||||
ReadGltf D "$aTmpGltf"
|
ReadGltf D "$aTmpGltf"
|
||||||
XGetOneShape s D
|
XGetOneShape s D
|
||||||
checknbshapes s -face 6 -vertex 8 -compound 11
|
checknbshapes s -face 6 -compound 2
|
||||||
|
|
||||||
set THE_REF_DUMP {
|
set THE_REF_DUMP {
|
||||||
ASSEMBLY COMPOUND 0:1:1:1 "empty_tmp.glb"
|
ASSEMBLY COMPOUND 0:1:1:1 "empty_tmp.glb"
|
||||||
INSTANCE COMPOUND 0:1:1:1:1 (refers to 0:1:1:2) "Compound"
|
INSTANCE COMPOUND 0:1:1:1:1 (refers to 0:1:1:2) "Compound"
|
||||||
INSTANCE COMPOUND 0:1:1:1:2 (refers to 0:1:1:19) "Compound"
|
PART COMPOUND 0:1:1:2 "Compound"
|
||||||
ASSEMBLY COMPOUND 0:1:1:2 "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:1 (refers to 0:1:1:3) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:2 (refers to 0:1:1:5) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:3 (refers to 0:1:1:7) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:4 (refers to 0:1:1:9) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:5 (refers to 0:1:1:11) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:6 (refers to 0:1:1:13) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:7 (refers to 0:1:1:15) "Compound"
|
|
||||||
INSTANCE COMPOUND 0:1:1:2:8 (refers to 0:1:1:17) "Compound"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:3 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:3:1 (refers to 0:1:1:4) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:4 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:5 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:5:1 (refers to 0:1:1:6) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:6 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:7 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:7:1 (refers to 0:1:1:8) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:8 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:9 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:9:1 (refers to 0:1:1:10) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:10 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:11 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:11:1 (refers to 0:1:1:12) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:12 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:13 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:13:1 (refers to 0:1:1:14) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:14 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:15 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:15:1 (refers to 0:1:1:16) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:16 "Vertex"
|
|
||||||
ASSEMBLY COMPOUND 0:1:1:17 "Compound"
|
|
||||||
INSTANCE VERTEX 0:1:1:17:1 (refers to 0:1:1:18) "Vertex"
|
|
||||||
PART VERTEX 0:1:1:18 "Vertex"
|
|
||||||
PART COMPOUND 0:1:1:19 "Compound"
|
|
||||||
|
|
||||||
Free Shapes: 1
|
Free Shapes: 1
|
||||||
ASSEMBLY COMPOUND 0:1:1:1 "empty_tmp.glb"
|
ASSEMBLY COMPOUND 0:1:1:1 "empty_tmp.glb"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user