mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0027299: Incorrect result of the normal projection algorithm
Curve splitting is added to handle seam passing by initial curve. test cases are added. Minor corrections.
This commit is contained in:
@@ -152,6 +152,12 @@ public:
|
||||
//! Get functional minimal value.
|
||||
Standard_EXPORT Standard_Real GetFunctionalMinimalValue();
|
||||
|
||||
//! Get continuity of local borders splits.
|
||||
inline Standard_Integer GetContinuity() const {return myCont; }
|
||||
|
||||
//! Set continuity of local borders splits.
|
||||
inline void SetContinuity(const Standard_Integer theCont) { myCont = theCont; }
|
||||
|
||||
private:
|
||||
|
||||
// Compute cell size.
|
||||
@@ -223,6 +229,9 @@ private:
|
||||
Standard_Boolean isFirstCellFilterInvoke;
|
||||
NCollection_CellFilter<NCollection_CellFilter_Inspector> myFilter;
|
||||
|
||||
// Continuity of local borders.
|
||||
Standard_Integer myCont;
|
||||
|
||||
Standard_Real myF; // Current value of Global optimum.
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user