1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/tests/bugs/xde/bug22898
oan 7bd071edb1 0026106: BRepMesh - revision of data model
Removed tight connections between data structures, auxiliary tools and algorithms in order to create extensible solution, easy for maintenance and improvements;
Code is separated on several functional units responsible for specific operation for the sake of simplification of debugging and readability;
Introduced new data structures enabling possibility to manipulate discrete model of particular entity (edge, wire, face) in order to perform computations locally instead of processing an entire model.

The workflow of updated component can be divided on six parts:
* Creation of model data structure: source TopoDS_Shape passed to algorithm is analyzed and exploded on faces and edges. For each topological entity corresponding reflection is created in data model. Note that underlying algorithms use data model as input and access it via common interface which allows user to create custom data model with necessary dependencies between particular entities;
* Discretize edges 3D & 2D curves: 3D curve as well as associated set of 2D curves of each model edge is discretized in order to create coherent skeleton used as a base in faces meshing process. In case if some edge of source shape already contains polygonal data which suites specified parameters, it is extracted from shape and stored to the model as is. Each edge is processed separately, adjacency is not taken into account;
* Heal discrete model: source TopoDS_Shape can contain problems, such as open-wire or self-intersections, introduced during design, exchange or modification of model. In addition, some problems like self-intersections can be introduced by roughly discretized edges. This stage is responsible for analysis of discrete model in order to detect and repair faced problems or refuse model’s part for further processing in case if problem cannot be solved;
* Preprocess discrete model: defines actions specific for implemented approach to be performed before meshing of faces. By default, iterates over model faces and checks consistency of existing triangulations. Cleans topological faces and its adjacent edges from polygonal data in case of inconsistency or marks face of discrete model as not required for computation;
* Discretize faces: represents core part performing mesh generation for particular face based on 2D discrete data related to processing face. Caches polygonal data associated with face’s edges in data model for further processing and stores generated mesh to TopoDS_Face;
* Postprocess discrete model: defines actions specific for implemented approach to be performed after meshing of faces. By default, stores polygonal data obtained on previous stage to TopoDS_Edge objects of source model.

Component is now spread over IMeshData, IMeshTools, BRepMeshData and BRepMesh units.

<!break>

1. Extend "tricheck" DRAW-command in order to find degenerated triangles.

2. Class BRepMesh_FastDiscret::Parameters has been declared as deprecated.

3. NURBS range splitter: do not split intervals without necessity. Intervals are split only in case if it is impossible to compute normals directly on intervals.

4. Default value of IMeshTools_Parameters::MinSize has been changed. New value is equal to 0.1*Deflection.

5. Correction of test scripts:

1) perf mesh bug27119: requested deflection is increased from 1e-6 to 1e-5 to keep reasonable performance (but still reproducing original issue)
2) bugs mesh bug26692_1, 2: make snapshot of triangulation instead of wireframe (irrelevant)

Correction in upgrade guide.
2018-11-02 17:06:40 +03:00

56 lines
1.3 KiB
Plaintext

puts "TODO OCC24156 MacOS: Error: unsupported locale specification"
# Test for issue #22898 and other functionality that can be affected by locale.
# Just run multiple conversions of the shape to and from diferent formats and
# check that the result is good shape with expected area
if { [checkplatform -linux] } {
dlocale LC_ALL fr_FR
} else {
dlocale LC_ALL French
}
pload MODELING
pload XSTEP
# original shape
restore [locate_data_file hammer.brep] hammer
checkshape hammer
tolerance hammer
checkarea hammer 3.978e8 1e6 0.001
# BREP
save hammer $imagedir/hammer.brep
restore $imagedir/hammer.brep brep
checkshape brep
tolerance brep
checkarea brep 3.978e8 1e6 0.001
# IGES
brepiges hammer $imagedir/hammer.igs
igesbrep $imagedir/hammer.igs iges *
checkshape iges
tolerance iges
checkarea iges 3.978e8 1e6 0.001
# STEP
stepwrite a hammer $imagedir/hammer.stp
stepread $imagedir/hammer.stp step *
checkshape step_1
tolerance step_1
checkarea step_1 3.978e8 1e6 0.001
# STL
incmesh hammer 30
writestl hammer $imagedir/hammer.stl
readstl stl $imagedir/hammer.stl -brep
checkshape stl
tolerance stl
checkarea stl 3.978e8 1e6 0.001
# VRML: reading does not work regardless of locale...
writevrml hammer $imagedir/hammer.vrml
#loadvrml vrml $imagedir/hammer.vrml
#checkshape vrml
#tolerance vrml