1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
occt/src/ShapeCustom/ShapeCustom_DirectModification.cxx
kgv dde6883382 0027772: Foundation Classes - define Standard_Boolean using C++ type "bool" instead of "unsigned int"
Code has been updated to remove no-op casts and implicit casts to Standard_Boolean.

Places of inproper use of Standard_Boolean instead of Standard_Integer
have been corrected:
- Bnd_Box, Bnd_Box2d
  Bit flags are now defined as private enum
- HLRAlgo_BiPoint, HLRAlgo_EdgesBlock, HLRBRep_EdgeData, HLRBRep_FaceData
  Bit flags are now defined as enum
- HLRAlgo_EdgeStatus, HLRBRep_BiPnt2D, HLRBRep_BiPoint
  Bit flags are now defined as bool fields
- HLRAlgo_PolyData
  Bit flags are now defined as Standard_Integer
- OSD_DirectoryIterator, OSD_FileIterator
  Boolean flag is now defined as Standard_Boolean
- ShapeAnalysis_Surface::SurfaceNewton()
  now returns Standard_Integer (values 0, 1 or 3)
- ChFi2d_FilletAlgo
  now uses TColStd_SequenceOfBoolean instead of TColStd_SequenceOfInteger
  for storing boolean flags

Method IFSelect_Dispatch::PacketsCount() has been dropped from interface.

ShapeFix_Solid::Status() has been fixed to decode requested status
instead of returning integer value.

TopOpeBRepBuild_Builder1 now defines map storing Standard_Boolean values
instead of Standard_Integer.

Persistence for Standard_Boolean type has been corrected
to keep backward compatibility:
- BinMDataStd, BinTools, FSD_BinaryFile

Broken Draw Harness commands vdisplaymode and verasemode have been removed.

BRepMesh_FastDiscretFace::initDataStructure() - workaround old gcc limitations

BRepMesh_IncrementalMesh::clear() - avoid ambiguity
2016-08-26 10:16:17 +03:00

272 lines
9.6 KiB
C++

// Copyright (c) 1999-2014 OPEN CASCADE SAS
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
//:l8 abv 15.01.99: CTS22022: writing correct pcurves for indirect tori
//:p5 abv 26.02.99: PRO18207: force copying of edge if any its pcurve is to be replaced
//szv#4 S4163
//S4181 pdn 20.04.99 Modification of indirect rectangular trimming surfaces and taking
// locations into account
//szv 03.01.01 PositiveCones merged in
#include <BRep_Builder.hxx>
#include <BRep_GCurve.hxx>
#include <BRep_ListIteratorOfListOfCurveRepresentation.hxx>
#include <BRep_TEdge.hxx>
#include <BRep_Tool.hxx>
#include <BRepTools.hxx>
#include <Geom2d_Curve.hxx>
#include <Geom_ConicalSurface.hxx>
#include <Geom_Curve.hxx>
#include <Geom_ElementarySurface.hxx>
#include <Geom_RectangularTrimmedSurface.hxx>
#include <Geom_Surface.hxx>
#include <gp_Mat.hxx>
#include <gp_Pnt.hxx>
#include <Message_Msg.hxx>
#include <Precision.hxx>
#include <ShapeCustom_DirectModification.hxx>
#include <Standard_Type.hxx>
#include <TopLoc_Location.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Vertex.hxx>
IMPLEMENT_STANDARD_RTTIEXT(ShapeCustom_DirectModification,ShapeCustom_Modification)
//=======================================================================
//function : ShapeCustom_DirectModification
//purpose :
//=======================================================================
ShapeCustom_DirectModification::ShapeCustom_DirectModification()
{
}
//S4181 returns 0 - none, 1 - indirect, 2 - negative cone, 3 - indirect negative cone
static Standard_Integer IsIndirectSurface (Handle(Geom_Surface) &S,
TopLoc_Location &L)
{
Standard_Integer result = 0;
Handle(Geom_Surface) TS = S;
while (TS->IsKind(STANDARD_TYPE(Geom_RectangularTrimmedSurface)))
TS = Handle(Geom_RectangularTrimmedSurface)::DownCast(TS)->BasisSurface();
Handle(Geom_ElementarySurface) ES = Handle(Geom_ElementarySurface)::DownCast(TS);
if (!ES.IsNull()) {
// is the surface indirect ?
gp_Trsf t = L.Transformation();
Standard_Boolean neg = t.IsNegative();
Standard_Boolean det = ( t.VectorialPart().Determinant() < 0.0 );
Standard_Boolean dir = ES->Position().Direct();
if ((neg != det) == dir) result = 1;
Handle(Geom_ConicalSurface) CS = Handle(Geom_ConicalSurface)::DownCast(ES);
if (!CS.IsNull()) {
// does the cone have negative semiangle ?
if ( CS->SemiAngle() < 0.0 ) result += 2;
}
if (result) S = TS;
}
return result;
}
//=======================================================================
//function : NewSurface
//purpose :
//=======================================================================
Standard_Boolean ShapeCustom_DirectModification::NewSurface (const TopoDS_Face& F,
Handle(Geom_Surface)& S,
TopLoc_Location& L,
Standard_Real& Tol,
Standard_Boolean& RevWires,
Standard_Boolean& RevFace)
{
S = BRep_Tool::Surface(F,L);
switch (IsIndirectSurface(S,L)) {
case 1: { // Indirect surface
// UReverse a copy of S
S = S->UReversed();
RevWires = Standard_True;
RevFace = Standard_True;
break;
}
case 2: { // Negative cone
// U- and VReverse a copy of S
S = S->VReversed();
S->UReverse();
RevWires = Standard_False;
RevFace = Standard_False;
break;
}
case 3: { // Indirect negative cone
// VReverse a copy of S
S = S->VReversed();
RevWires = Standard_True;
RevFace = Standard_True;
break;
}
default: return Standard_False;
}
SendMsg( F, Message_Msg("DirectModification.NewSurface.MSG0"));
Tol = BRep_Tool::Tolerance(F);
return Standard_True;
}
//=======================================================================
//function : NewCurve
//purpose :
//=======================================================================
Standard_Boolean ShapeCustom_DirectModification::NewCurve (const TopoDS_Edge& E,
Handle(Geom_Curve)& C,
TopLoc_Location& L,
Standard_Real& Tol)
{
//:p5 abv 26 Feb 99: force copying of edge if any its pcurve will be replaced
Handle(BRep_TEdge)& TE = *((Handle(BRep_TEdge)*)&E.TShape());
// iterate on pcurves
BRep_ListIteratorOfListOfCurveRepresentation itcr(TE->Curves());
for ( ; itcr.More(); itcr.Next() ) {
Handle(BRep_GCurve) GC = Handle(BRep_GCurve)::DownCast(itcr.Value());
if ( GC.IsNull() || ! GC->IsCurveOnSurface() ) continue;
Handle(Geom_Surface) S = GC->Surface();
TopLoc_Location Loc = GC->Location();
if ( ! IsIndirectSurface ( S, Loc ) ) continue;
Standard_Real f, l;
C = BRep_Tool::Curve ( E, L, f, l );
if ( ! C.IsNull() ) C = Handle(Geom_Curve)::DownCast ( C->Copy() );
Tol = BRep_Tool::Tolerance(E);
return Standard_True;
}
return Standard_False;
}
//=======================================================================
//function : NewPoint
//purpose :
//=======================================================================
Standard_Boolean ShapeCustom_DirectModification::NewPoint (const TopoDS_Vertex& /*V*/,
gp_Pnt& /*P*/,
Standard_Real& /*Tol*/)
{
// 3d points are never modified
return Standard_False;
}
//=======================================================================
//function : NewCurve2d
//purpose :
//=======================================================================
Standard_Boolean ShapeCustom_DirectModification::NewCurve2d (const TopoDS_Edge& E,
const TopoDS_Face& F,
const TopoDS_Edge& NewE,
const TopoDS_Face& NewF,
Handle(Geom2d_Curve)& C,
Standard_Real& Tol)
{
TopLoc_Location L;
Handle(Geom_Surface) S = BRep_Tool::Surface(F,L);
Standard_Integer result = IsIndirectSurface ( S, L );
if ( !result && E.IsSame(NewE) ) return Standard_False;
Standard_Real f, l;
C = BRep_Tool::CurveOnSurface( E, F, f, l );
Tol = BRep_Tool::Tolerance(E);
if ( result ) {
gp_Trsf2d T;
switch (result) {
case 1: { // Indirect surface
// mirror the PCurve about the V axis
T.SetMirror(gp::OY2d());
C = Handle(Geom2d_Curve)::DownCast(C->Transformed(T));
break;
}
case 2: { // Negative cone
// mirror the PCurve about the U and V axis
T.SetMirror(gp::OX2d());
C = Handle(Geom2d_Curve)::DownCast(C->Transformed(T));
T.SetMirror(gp::OY2d());
C->Transform(T);
break;
}
case 3: { // Indirect negative cone
// mirror the PCurve about the U axis
T.SetMirror(gp::OX2d());
C = Handle(Geom2d_Curve)::DownCast(C->Transformed(T));
break;
}
}
//#26 rln When seam edge contains triangulations trimming is lost by BRep_Builder::UpdateEdge
if (BRepTools::IsReallyClosed (E, F)) {
//szv#4:S4163:12Mar99 SGI warning
TopoDS_Shape sh = NewE.Reversed();
Handle(Geom2d_Curve) tmp = BRep_Tool::CurveOnSurface( TopoDS::Edge(sh), NewF, f, l );
if (tmp.IsNull()) {
tmp = BRep_Tool::CurveOnSurface (E, F, f, l);
BRep_Builder B;
B.UpdateEdge (NewE, tmp, C, NewF, Tol);
B.Range (NewE, NewF, f, l);
//anyway, tmp will be removed later by BRepTools_Modifier
}
}
}
else {
//:p5 abv 26 Feb 99: force copying of pcurves if edge was copied
if ( ! C.IsNull() ) C = Handle(Geom2d_Curve)::DownCast ( C->Copy() );
}
return Standard_True;
}
//=======================================================================
//function : NewParameter
//purpose :
//=======================================================================
Standard_Boolean ShapeCustom_DirectModification::NewParameter (const TopoDS_Vertex& /*V*/,
const TopoDS_Edge& /*E*/,
Standard_Real& /*P*/,
Standard_Real& /*Tol*/)
{
return Standard_False;
}
//=======================================================================
//function : Continuity
//purpose :
//=======================================================================
GeomAbs_Shape ShapeCustom_DirectModification::Continuity (const TopoDS_Edge& E,
const TopoDS_Face& F1,
const TopoDS_Face& F2,
const TopoDS_Edge& /*NewE*/,
const TopoDS_Face& /*NewF1*/,
const TopoDS_Face& /*NewF2*/)
{
return BRep_Tool::Continuity(E,F1,F2);
}