diff --git a/dox/user_guides/de_wrapper/de_wrapper.md b/dox/user_guides/de_wrapper/de_wrapper.md index e40b43bde0..09e0b70901 100644 --- a/dox/user_guides/de_wrapper/de_wrapper.md +++ b/dox/user_guides/de_wrapper/de_wrapper.md @@ -24,15 +24,15 @@ This guide principally deals with the following OCCT classes: | CAD format | Extensions | RW support | Thread Safety | Presentation | Package | | :--------- | :--------- | :--------- | :----------- | :----------- | :------ | -| STEP | .stp, .step .stepz | RW | No | BRep, Mesh | STEPCAFControl | -| XCAF | .xbf | RW | Yes | BRep, Mesh | DEXCAFCascade | -| BREP | .brep | RW | Yes | BRep, Mesh | DEBRepCascade | -| IGES | .igs, .iges | RW | No | BRep | IGESCAFControl | -| OBJ | .obj | RW | Yes | Mesh | RWObj | -| STL | .stl | RW | Yes | Mesh | RWStl | -| PLY | .ply | W | Yes | Mesh | RWPly | -| GLTF | .glTF .glb | RW | Yes | Mesh | RWGltf | -| VRML | .wrl .vrml | RW | Yes | Mesh | Vrml | +| STEP | .stp, .step .stepz | RW | No | BRep, Mesh | DESTEP | +| XCAF | .xbf | RW | Yes | BRep, Mesh | DEXCAF | +| BREP | .brep | RW | Yes | BRep, Mesh | DEBREP | +| IGES | .igs, .iges | RW | No | BRep | DEIGES | +| OBJ | .obj | RW | Yes | Mesh | DEOBJ | +| STL | .stl | RW | Yes | Mesh | DESTL | +| PLY | .ply | W | Yes | Mesh | DEPLY | +| GLTF | .glTF .glb | RW | Yes | Mesh | DEGLTF | +| VRML | .wrl .vrml | RW | Yes | Mesh | DEVRML | **Note** : * The format names in the first column match the FormatName values used for configuration nodes. @@ -41,7 +41,7 @@ This guide principally deals with the following OCCT classes: @section occt_de_wrapper_3 DE Session Configuration Any providers can have their own read/write parameters. The transfer process is set up using DE configuration nodes, which hold all relevant parameters. There are two ways to change the parameter values: directly from code or by an external resource file/string. -The session is a global or static DE_Wrapper object that stores registered DE configuration nodes and wraps DE commands to work with them. It has some configuration parameters of its own and also keeps track of loaded nodes and specilal global parameters. +The session is a global or static DE_Wrapper object that stores registered DE configuration nodes and wraps DE commands to work with them. It has some configuration parameters of its own and also keeps track of loaded nodes and special global parameters. @subsection occt_de_wrapper_3_1 Getting a DE session. Code sample diff --git a/src/DEGLTF/DEGLTF_ConfigurationNode.cxx b/src/DEGLTF/DEGLTF_ConfigurationNode.cxx index f20cb4ceef..cee90ef709 100644 --- a/src/DEGLTF/DEGLTF_ConfigurationNode.cxx +++ b/src/DEGLTF/DEGLTF_ConfigurationNode.cxx @@ -62,7 +62,7 @@ bool DEGLTF_ConfigurationNode::Load(const Handle(DE_ConfigurationContext)& theRe % 2); InternalParameters.FileCS = (RWMesh_CoordinateSystem)(theResource->IntegerVal("file.cs", - (int)InternalParameters.SystemCS, + (int)InternalParameters.FileCS, aScope) % 2); diff --git a/src/DEOBJ/DEOBJ_ConfigurationNode.cxx b/src/DEOBJ/DEOBJ_ConfigurationNode.cxx index 3f7cb7dbf5..826b150848 100644 --- a/src/DEOBJ/DEOBJ_ConfigurationNode.cxx +++ b/src/DEOBJ/DEOBJ_ConfigurationNode.cxx @@ -61,7 +61,7 @@ bool DEOBJ_ConfigurationNode::Load(const Handle(DE_ConfigurationContext)& theRes % 2); InternalParameters.FileCS = (RWMesh_CoordinateSystem)(theResource->IntegerVal("file.cs", - (int)InternalParameters.SystemCS, + (int)InternalParameters.FileCS, aScope) % 2); diff --git a/src/DEPLY/DEPLY_ConfigurationNode.cxx b/src/DEPLY/DEPLY_ConfigurationNode.cxx index 0c48f2f4d4..fa47112c8f 100644 --- a/src/DEPLY/DEPLY_ConfigurationNode.cxx +++ b/src/DEPLY/DEPLY_ConfigurationNode.cxx @@ -62,7 +62,7 @@ bool DEPLY_ConfigurationNode::Load(const Handle(DE_ConfigurationContext)& theRes % 2); InternalParameters.FileCS = (RWMesh_CoordinateSystem)(theResource->IntegerVal("file.cs", - (int)InternalParameters.SystemCS, + (int)InternalParameters.FileCS, aScope) % 2); diff --git a/tests/de_wrapper/configuration/A5 b/tests/de_wrapper/configuration/A5 new file mode 100644 index 0000000000..e4621026c5 --- /dev/null +++ b/tests/de_wrapper/configuration/A5 @@ -0,0 +1,13 @@ +puts "============" +puts "0032821: DEWrapper - Implementation of a common toolkit for importing and exporting CAD files" +puts "============" +puts "" + +# Checking the stability of ability to change the configuration's values +set old_conf [DumpConfiguration] + +LoadConfiguration "" + +set new_conf [DumpConfiguration] + +CompareConfiguration ${old_conf} ${new_conf}