1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-21 10:55:33 +03:00

Data Exchange, GLTF - Change export line type to LINE_STRIP #535

GLTF exporter mark edges as a LINE, which is 2 connected points.
OCCT polylines is mostly line strip structure.
Updated GLTF reader to handle new type of lines
This commit is contained in:
Elias Cohenca 2025-05-17 12:00:40 +03:00 committed by GitHub
parent 2eeb0ed5ba
commit b29788cae0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 6 additions and 4 deletions

View File

@ -2030,7 +2030,7 @@ void RWGltf_CafWriter::writePrimArray(const RWGltf_GltfFace& theGltfFace
switch (theGltfFace.Shape.ShapeType())
{
case TopAbs_EDGE:
myWriter->Int(RWGltf_GltfPrimitiveMode_Lines);
myWriter->Int(RWGltf_GltfPrimitiveMode_LineStrip);
break;
case TopAbs_VERTEX:
myWriter->Int(RWGltf_GltfPrimitiveMode_Points);

View File

@ -1808,7 +1808,7 @@ bool RWGltf_GltfJsonParser::gltfParsePrimArray(TopoDS_Shape& th
}
}
if (aMode != RWGltf_GltfPrimitiveMode_Triangles && aMode != RWGltf_GltfPrimitiveMode_Lines
&& aMode != RWGltf_GltfPrimitiveMode_Points)
&& aMode != RWGltf_GltfPrimitiveMode_LineStrip && aMode != RWGltf_GltfPrimitiveMode_Points)
{
Message::SendWarning(TCollection_AsciiString() + "Primitive array within Mesh '" + theMeshId
+ "' skipped due to unsupported mode");
@ -1976,7 +1976,8 @@ bool RWGltf_GltfJsonParser::gltfParsePrimArray(TopoDS_Shape& th
aShape = aVertices;
break;
}
case RWGltf_GltfPrimitiveMode_Lines: {
case RWGltf_GltfPrimitiveMode_Lines:
case RWGltf_GltfPrimitiveMode_LineStrip: {
TColgp_Array1OfPnt aNodes(1, aMeshData->NbEdges());
for (Standard_Integer anEdgeIdx = 1; anEdgeIdx <= aMeshData->NbEdges(); ++anEdgeIdx)
{
@ -2011,7 +2012,7 @@ bool RWGltf_GltfJsonParser::gltfParsePrimArray(TopoDS_Shape& th
aShapeAttribs.RawName = theMeshName;
// assign material and not color
if (aMode == RWGltf_GltfPrimitiveMode_Lines)
if (aMode == RWGltf_GltfPrimitiveMode_Lines || aMode == RWGltf_GltfPrimitiveMode_LineStrip)
{
aShapeAttribs.Style.SetColorCurv(aMeshData->BaseColor().GetRGB());
}

View File

@ -579,6 +579,7 @@ bool RWGltf_TriangulationReader::ReadStream(
const TCollection_AsciiString& aName = theSourceMesh->Id();
const RWGltf_GltfPrimitiveMode aPrimMode = theSourceMesh->PrimitiveMode();
if (aPrimMode != RWGltf_GltfPrimitiveMode_Triangles && aPrimMode != RWGltf_GltfPrimitiveMode_Lines
&& aPrimMode != RWGltf_GltfPrimitiveMode_LineStrip
&& aPrimMode != RWGltf_GltfPrimitiveMode_Points)
{
Message::SendWarning(TCollection_AsciiString("Buffer '") + aName