mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
0028677: Avoid change of wire orientation in BRepLib_MakeFace if the wire is open
Method BRepLib_MakeFace::CheckInside() is not called for open wire. So, if the input wire is open its orientation is not changed in the result face.
This commit is contained in:
parent
752f9d7201
commit
b608f6a564
@ -1360,3 +1360,14 @@ if (anError != Storage_VSOk)
|
||||
// Error processing
|
||||
}
|
||||
~~~~
|
||||
|
||||
@subsection upgrade_720_Change_In_BRepLib_MakeFace_Algo Change in BRepLib_MakeFace algorithm
|
||||
|
||||
Previously, BRepLib_MakeFace algorithm changed orientation of the source wire in order to avoid creation of face as a hole (i.e. it is impossible to create single face as hole; hole can be created in context of another face only). New algorithm does not reverse the wire if it is open. Material of the face for open wire will be located on the left side from the source wire.
|
||||
|
||||
@subsection upgrade_720_Change_In_BRepFill_OffsetWire Change in BRepFill_OffsetWire algorithm
|
||||
|
||||
Now, offset direction will always be to outer region in case of positive offset value and to inner region in case of negative offset value.
|
||||
Inner/Outer region for open wire is defined by the following rule:
|
||||
when we go along the wire (taking into account edges orientation) then outer region will be on the right side, inner region will be on the left side.
|
||||
In case of closed wire, inner region will always be inside the wire (at that, edges orientation is not taken into account).
|
@ -44,9 +44,18 @@ class Bisector_Bisec;
|
||||
class BRepFill_TrimEdgeTool;
|
||||
|
||||
|
||||
//! Constructs a Offset Wire to a spine (wire or face)
|
||||
//! on the left of spine.
|
||||
//! The Wire or the Face must be planar.
|
||||
//! Constructs a Offset Wire to a spine (wire or face).
|
||||
//! Offset direction will be to outer region in case of
|
||||
//! positive offset value and to inner region in case of
|
||||
//! negative offset value.
|
||||
//! Inner/Outer region for open wire is defined by the
|
||||
//! following rule: when we go along the wire (taking into
|
||||
//! account of edges orientation) then outer region will be
|
||||
//! on the right side, inner region will be on the left side.
|
||||
//! In case of closed wire, inner region will always be
|
||||
//! inside the wire (at that, edges orientation is not taken
|
||||
//! into account).
|
||||
//! The Wire or the Face must be planar and oriented correctly.
|
||||
class BRepFill_OffsetWire
|
||||
{
|
||||
public:
|
||||
|
@ -270,7 +270,8 @@ BRepLib_MakeFace::BRepLib_MakeFace(const TopoDS_Wire& W,
|
||||
//
|
||||
BRepLib::SameParameter(myShape, tol, Standard_True);
|
||||
//
|
||||
CheckInside();
|
||||
if (BRep_Tool::IsClosed(W))
|
||||
CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -286,7 +287,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const gp_Pln& P,
|
||||
Handle(Geom_Plane) Pl = new Geom_Plane(P);
|
||||
Init(Pl, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -302,7 +303,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const gp_Cylinder& C,
|
||||
Handle(Geom_CylindricalSurface) GC = new Geom_CylindricalSurface(C);
|
||||
Init(GC, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -318,7 +319,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const gp_Cone& C,
|
||||
Handle(Geom_ConicalSurface) GC = new Geom_ConicalSurface(C);
|
||||
Init(GC, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -334,7 +335,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const gp_Sphere& S,
|
||||
Handle(Geom_SphericalSurface) GS = new Geom_SphericalSurface(S);
|
||||
Init(GS, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -350,7 +351,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const gp_Torus& T,
|
||||
Handle(Geom_ToroidalSurface) GT = new Geom_ToroidalSurface(T);
|
||||
Init(GT, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
@ -365,7 +366,7 @@ BRepLib_MakeFace::BRepLib_MakeFace(const Handle(Geom_Surface)& S,
|
||||
{
|
||||
Init(S, Standard_False, Precision::Confusion());
|
||||
Add(W);
|
||||
if (Inside) CheckInside();
|
||||
if (Inside && BRep_Tool::IsClosed(W)) CheckInside();
|
||||
}
|
||||
|
||||
|
||||
|
@ -12,7 +12,7 @@ smallview
|
||||
display a
|
||||
fit
|
||||
|
||||
if [catch { openoffset resoffset a 1 10 i } ] {
|
||||
if [catch { openoffset resoffset a 1 -10 i } ] {
|
||||
puts "Error : mkoffset is wrong"
|
||||
} else {
|
||||
renamevar resoffset_1 result
|
||||
|
@ -12,7 +12,7 @@ smallview
|
||||
display a
|
||||
fit
|
||||
|
||||
if [catch { openoffset resoffset a 1 -10 i } ] {
|
||||
if [catch { openoffset resoffset a 1 10 i } ] {
|
||||
puts "Error : mkoffset is wrong"
|
||||
} else {
|
||||
renamevar resoffset_1 result
|
||||
|
@ -15,7 +15,7 @@ wire ww a_3 a_4
|
||||
|
||||
donly ww
|
||||
|
||||
openoffset res ww 1 -10
|
||||
openoffset res ww 1 10
|
||||
renamevar res_1 result
|
||||
|
||||
fit
|
||||
|
@ -15,7 +15,7 @@ wire ww a_3
|
||||
|
||||
donly ww
|
||||
|
||||
openoffset res ww 1 10
|
||||
openoffset res ww 1 -10
|
||||
renamevar res_1 result
|
||||
|
||||
fit
|
||||
|
@ -15,7 +15,7 @@ wire ww a_3
|
||||
|
||||
donly ww
|
||||
|
||||
openoffset res ww 1 -10
|
||||
openoffset res ww 1 10
|
||||
renamevar res_1 result
|
||||
|
||||
fit
|
||||
|
@ -15,7 +15,7 @@ wire ww a_3 a_4
|
||||
|
||||
donly ww
|
||||
|
||||
openoffset res ww 1 10
|
||||
openoffset res ww 1 -10
|
||||
renamevar res_1 result
|
||||
|
||||
fit
|
||||
|
@ -12,7 +12,7 @@ smallview
|
||||
display a
|
||||
fit
|
||||
|
||||
if [catch { openoffset resoffset a 1 6. i } ] {
|
||||
if [catch { openoffset resoffset a 1 -6. i } ] {
|
||||
puts "Error : openoffset is wrong"
|
||||
} else {
|
||||
renamevar resoffset_1 result
|
||||
|
@ -10,7 +10,7 @@ smallview
|
||||
|
||||
restore [locate_data_file bug26296_linesarc.brep] a
|
||||
fit
|
||||
openoffset r a 4 10.
|
||||
openoffset r a 4 -10.
|
||||
fit
|
||||
|
||||
checkview -screenshot -2d -path ${imagedir}/${test_image}.png
|
||||
|
@ -11,7 +11,7 @@ explode co
|
||||
foreach s {co_1 co_2 co_3 co_4} {
|
||||
|
||||
puts "\n*** make offset of wire r$s\n"
|
||||
mkoffset r${s} ${s} 1 1
|
||||
mkoffset r${s} ${s} 1 -1
|
||||
|
||||
regexp {nb alone Vertices : ([-0-9.+eE]+)} [checksection r${s}_1] full nbv
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
restore [locate_data_file offset_wire_058.brep] s
|
||||
|
||||
set off_param -$off_param
|
||||
|
||||
set length 3316.27
|
||||
set nbsh_v 62
|
||||
set nbsh_e 62
|
||||
set nbsh_w 1
|
||||
|
||||
set nbsh_w 1
|
@ -1,5 +1,7 @@
|
||||
restore [locate_data_file offset_wire_058.brep] s
|
||||
|
||||
set off_param -$off_param
|
||||
|
||||
set length 2582.56
|
||||
set nbsh_v 47
|
||||
set nbsh_e 47
|
||||
|
@ -5,6 +5,9 @@ puts "TODO OCC24156 MacOS: Error : The length of result shape is"
|
||||
puts "TODO OCC24156 MacOS: Error : The resulting shape is WRONG"
|
||||
|
||||
restore [locate_data_file offset_wire_001.brep] s
|
||||
|
||||
set off_param -$off_param
|
||||
|
||||
set length 11.6898
|
||||
set nbsh_v 23
|
||||
set nbsh_e 23
|
||||
|
@ -1,5 +1,7 @@
|
||||
restore [locate_data_file offset_wire_058.brep] s
|
||||
|
||||
set off_param -$off_param
|
||||
|
||||
set length 3127.75
|
||||
set nbsh_v 39
|
||||
set nbsh_e 39
|
||||
|
Loading…
x
Reference in New Issue
Block a user