VrmlData_Scene::createNode() now handles Collision item.
VrmlData_ArrayVec3d::ReadArray() now handles a case with omitted brackets.
Added test bugs xde bug29597
// Read the body of the data node (list of triplets)
if (OK(aStatus) && OK(aStatus, VrmlData_Scene::ReadLine(theBuffer))) {
if (theBuffer.LinePtr[0] != '[') // opening bracket
- aStatus = VrmlData_VrmlFormatError;
+ {
+ // Handle case when brackets are ommited for single element of array
+ gp_XYZ anXYZ;
+ // Read three numbers (XYZ value)
+ if (!OK(aStatus, Scene().ReadXYZ(theBuffer, anXYZ,
+ isScale, Standard_False)))
+ aStatus = VrmlData_VrmlFormatError;
+ else
+ vecValues.Append(anXYZ);
+ }
else {
theBuffer.LinePtr++;
for(;;) {
break;
}
}
+ else if (VRMLDATA_LCOMPARE(theBuffer.LinePtr, "collide")) {
+ TCollection_AsciiString aDummy;
+ aStatus = Scene().ReadWord (theBuffer, aDummy);
+ }
else if (VRMLDATA_LCOMPARE (theBuffer.LinePtr, "Separator") ||
VRMLDATA_LCOMPARE (theBuffer.LinePtr, "Switch")) {
Standard_Boolean isBracketed (Standard_False);
else if (VRMLDATA_LCOMPARE(theBuffer.LinePtr, "Separator"))
aNode = new VrmlData_Group (* this, strName,
Standard_False);
+ else if (VRMLDATA_LCOMPARE(theBuffer.LinePtr, "Collision"))
+ aNode = new VrmlData_Group (* this, strName,
+ Standard_False);
else if (VRMLDATA_LCOMPARE(theBuffer.LinePtr, "Switch"))
aNode = new VrmlData_Group (* this, strName,
Standard_False);
--- /dev/null
+puts "=========="
+puts "0029539: Data Exchange - unable to read VRML from data samples"
+puts "=========="
+puts ""
+
+pload VISUALIZATION XDE
+vclear
+vinit View1
+loadvrml v [locate_data_file bug29597_vrml2.wrl]
+vdisplay -dispMode 1 v
+vfit
+
+set anArea [triarea v]
+checkreal "Triangulation area" [lindex $anArea 0] 5341500. 1. 1e-6
+checktrinfo v -tri 12 -nod 24
+
+#vdump $::imagedir/${::casename}.png