mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-02 17:46:22 +03:00
The usage of *BRepAlgo_Section* has been replaced with the usage of *BRepAlgoAPI_Section* in *BRepProj_Projection* algorithm. The TODO statements have been removed from the failing test case in the "prj" grid as they are working correctly now. The following changes have been made to improve the performance *BRepAlgoAPI_Section*: 1. Revision of the *IntPolyh_Intersection* class to avoid repeated calculation of the deflection of the same triangulation. 2. Small revision of the Edge/Face intersection algorithm to perform Extrema computation on the whole intersection range of the edge instead of discrete ranges. 3. Implementation of the extrema computation for the Circle and Sphere. 4. Correct computation of the parameter of the point on the Circle.
216 lines
5.7 KiB
C++
216 lines
5.7 KiB
C++
// Created on: 2001-02-26
|
|
// Created by: Peter KURNEV
|
|
// Copyright (c) 2001-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.
|
|
|
|
#ifndef _IntTools_EdgeFace_HeaderFile
|
|
#define _IntTools_EdgeFace_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <TopoDS_Edge.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <BRepAdaptor_Curve.hxx>
|
|
#include <BRepAdaptor_Surface.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <IntTools_SequenceOfRanges.hxx>
|
|
#include <IntTools_SequenceOfCommonPrts.hxx>
|
|
#include <IntTools_Range.hxx>
|
|
class IntTools_Context;
|
|
class TopoDS_Edge;
|
|
class TopoDS_Face;
|
|
class IntTools_Range;
|
|
class gp_Pnt;
|
|
class BRepAdaptor_Surface;
|
|
class IntTools_CommonPrt;
|
|
|
|
//! The class provides Edge/Face intersection algorithm to determine
|
|
//! common parts between edge and face in 3-d space.
|
|
//! Common parts between Edge and Face can be:
|
|
//! - Vertices - in case of intersection or touching;
|
|
//! - Edge - in case of full coincidence of the edge with the face.
|
|
class IntTools_EdgeFace
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
public: //! @name Constructors
|
|
|
|
//! Empty Constructor
|
|
Standard_EXPORT IntTools_EdgeFace();
|
|
|
|
public: //! @name Setters/Getters
|
|
|
|
//! Sets the edge for intersection
|
|
void SetEdge(const TopoDS_Edge& theEdge)
|
|
{
|
|
myEdge = theEdge;
|
|
}
|
|
|
|
//! Returns the edge
|
|
const TopoDS_Edge& Edge() const
|
|
{
|
|
return myEdge;
|
|
}
|
|
|
|
//! Sets the face for intersection
|
|
void SetFace(const TopoDS_Face& theFace)
|
|
{
|
|
myFace = theFace;
|
|
}
|
|
|
|
//! Returns the face
|
|
const TopoDS_Face& Face() const
|
|
{
|
|
return myFace;
|
|
}
|
|
|
|
//! Sets the boundaries for the edge.
|
|
//! The algorithm processes edge inside these boundaries.
|
|
void SetRange(const IntTools_Range& theRange)
|
|
{
|
|
myRange = theRange;
|
|
}
|
|
|
|
//! Sets the boundaries for the edge.
|
|
//! The algorithm processes edge inside these boundaries.
|
|
void SetRange(const Standard_Real theFirst, const Standard_Real theLast)
|
|
{
|
|
myRange.SetFirst(theFirst);
|
|
myRange.SetLast(theLast);
|
|
}
|
|
|
|
//! Returns intersection range of the edge
|
|
const IntTools_Range& Range() const
|
|
{
|
|
return myRange;
|
|
}
|
|
|
|
//! Sets the intersection context
|
|
void SetContext(const Handle(IntTools_Context)& theContext)
|
|
{
|
|
myContext = theContext;
|
|
}
|
|
|
|
//! Returns the intersection context
|
|
const Handle(IntTools_Context)& Context() const
|
|
{
|
|
return myContext;
|
|
}
|
|
|
|
//! Sets the Fuzzy value
|
|
void SetFuzzyValue(const Standard_Real theFuzz)
|
|
{
|
|
myFuzzyValue = Max(theFuzz, Precision::Confusion());
|
|
}
|
|
|
|
//! Returns the Fuzzy value
|
|
Standard_Real FuzzyValue() const
|
|
{
|
|
return myFuzzyValue;
|
|
}
|
|
|
|
//! Sets the flag for quick coincidence check.
|
|
//! It is safe to use the quick check for coincidence only if both
|
|
//! of the following conditions are met:
|
|
//! - The vertices of edge are lying on the face;
|
|
//! - The edge does not intersect the boundaries of the face on the given range.
|
|
void UseQuickCoincidenceCheck(const Standard_Boolean theFlag)
|
|
{
|
|
myQuickCoincidenceCheck = theFlag;
|
|
}
|
|
|
|
//! Returns the flag myQuickCoincidenceCheck
|
|
Standard_Boolean IsCoincidenceCheckedQuickly()
|
|
{
|
|
return myQuickCoincidenceCheck;
|
|
}
|
|
|
|
|
|
|
|
public: //! @name Performing the operation
|
|
|
|
//! Launches the process
|
|
Standard_EXPORT void Perform();
|
|
|
|
|
|
public: //! @name Checking validity of the intersection
|
|
|
|
//! Returns TRUE if computation was successful.
|
|
//! Otherwise returns FALSE.
|
|
Standard_Boolean IsDone() const
|
|
{
|
|
return myIsDone;
|
|
}
|
|
|
|
//! Returns the code of completion:
|
|
//! 0 - means successful completion;
|
|
//! 1 - the process was not started;
|
|
//! 2,3 - invalid source data for the algorithm;
|
|
//! 4 - projection failed.
|
|
Standard_Integer ErrorStatus() const
|
|
{
|
|
return myErrorStatus;
|
|
}
|
|
|
|
|
|
public: //! @name Obtaining results
|
|
|
|
//! Returns resulting common parts
|
|
const IntTools_SequenceOfCommonPrts& CommonParts() const
|
|
{
|
|
return mySeqOfCommonPrts;
|
|
}
|
|
|
|
|
|
protected: //! @name Protected methods performing the intersection
|
|
|
|
Standard_EXPORT static Standard_Boolean IsEqDistance (const gp_Pnt& aP, const BRepAdaptor_Surface& aS, const Standard_Real aT, Standard_Real& aD);
|
|
Standard_EXPORT void CheckData();
|
|
|
|
Standard_EXPORT Standard_Boolean IsProjectable (const Standard_Real t) const;
|
|
|
|
Standard_EXPORT Standard_Real DistanceFunction (const Standard_Real t);
|
|
|
|
Standard_EXPORT Standard_Integer MakeType (IntTools_CommonPrt& aCP);
|
|
|
|
Standard_EXPORT Standard_Boolean CheckTouch (const IntTools_CommonPrt& aCP, Standard_Real& aTX);
|
|
|
|
Standard_EXPORT Standard_Boolean CheckTouchVertex (const IntTools_CommonPrt& aCP, Standard_Real& aTX);
|
|
|
|
//! Checks if the edge is in the face really.
|
|
Standard_EXPORT Standard_Boolean IsCoincident();
|
|
|
|
private:
|
|
|
|
TopoDS_Edge myEdge;
|
|
TopoDS_Face myFace;
|
|
Standard_Real myFuzzyValue;
|
|
BRepAdaptor_Curve myC;
|
|
BRepAdaptor_Surface myS;
|
|
Standard_Real myCriteria;
|
|
Standard_Boolean myIsDone;
|
|
Standard_Integer myErrorStatus;
|
|
Handle(IntTools_Context) myContext;
|
|
IntTools_SequenceOfCommonPrts mySeqOfCommonPrts;
|
|
IntTools_Range myRange;
|
|
Standard_Boolean myQuickCoincidenceCheck;
|
|
};
|
|
|
|
#endif // _IntTools_EdgeFace_HeaderFile
|