mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-16 05:04:11 +08:00
Automatic upgrade of OCCT code by command "occt_upgrade . -nocdl": - WOK-generated header files from inc and sources from drv are moved to src - CDL files removed - All packages are converted to nocdlpack
102 lines
3.1 KiB
C++
102 lines
3.1 KiB
C++
// Created on: 1998-03-12
|
|
// Created by: Pierre BARRAS
|
|
// Copyright (c) 1998-1999 Matra Datavision
|
|
// 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.
|
|
|
|
#ifndef _ShapeUpgrade_SplitCurve_HeaderFile
|
|
#define _ShapeUpgrade_SplitCurve_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <TColStd_HSequenceOfReal.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <MMgt_TShared.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <ShapeExtend_Status.hxx>
|
|
|
|
|
|
class ShapeUpgrade_SplitCurve;
|
|
DEFINE_STANDARD_HANDLE(ShapeUpgrade_SplitCurve, MMgt_TShared)
|
|
|
|
//! Splits a curve with a criterion.
|
|
class ShapeUpgrade_SplitCurve : public MMgt_TShared
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
//! Empty constructor.
|
|
Standard_EXPORT ShapeUpgrade_SplitCurve();
|
|
|
|
//! Initializes with curve first and last parameters.
|
|
Standard_EXPORT void Init (const Standard_Real First, const Standard_Real Last);
|
|
|
|
//! Sets the parameters where splitting has to be done.
|
|
Standard_EXPORT void SetSplitValues (const Handle(TColStd_HSequenceOfReal)& SplitValues);
|
|
|
|
//! If Segment is True, the result is composed with
|
|
//! segments of the curve bounded by the SplitValues. If
|
|
//! Segment is False, the result is composed with trimmed
|
|
//! Curves all based on the same complete curve.
|
|
Standard_EXPORT virtual void Build (const Standard_Boolean Segment);
|
|
|
|
//! returns all the splitting values including the
|
|
//! First and Last parameters of the input curve
|
|
//! Merges input split values and new ones into myGlobalKnots
|
|
Standard_EXPORT const Handle(TColStd_HSequenceOfReal)& SplitValues() const;
|
|
|
|
//! Calculates points for correction/splitting of the curve
|
|
Standard_EXPORT virtual void Compute();
|
|
|
|
//! Performs correction/splitting of the curve.
|
|
//! First defines splitting values by method Compute(), then calls method Build().
|
|
Standard_EXPORT void Perform (const Standard_Boolean Segment = Standard_True);
|
|
|
|
//! Returns the status
|
|
//! OK - no splitting is needed
|
|
//! DONE1 - splitting required and gives more than one segment
|
|
//! DONE2 - splitting is required, but gives only one segment (initial)
|
|
//! DONE3 - geometric form of the curve or parametrisation is modified
|
|
Standard_EXPORT Standard_Boolean Status (const ShapeExtend_Status status) const;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTI(ShapeUpgrade_SplitCurve,MMgt_TShared)
|
|
|
|
protected:
|
|
|
|
|
|
Handle(TColStd_HSequenceOfReal) mySplitValues;
|
|
Standard_Integer myNbCurves;
|
|
Standard_Integer myStatus;
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _ShapeUpgrade_SplitCurve_HeaderFile
|