mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03: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
96 lines
2.4 KiB
C++
96 lines
2.4 KiB
C++
// Created on: 1994-09-02
|
|
// Created by: Yves FRICAUD
|
|
// Copyright (c) 1994-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 _LProp_CurAndInf_HeaderFile
|
|
#define _LProp_CurAndInf_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <TColStd_SequenceOfReal.hxx>
|
|
#include <LProp_SequenceOfCIType.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
#include <LProp_CIType.hxx>
|
|
class Standard_OutOfRange;
|
|
|
|
|
|
//! Stores the parameters of a curve 2d or 3d corresponding
|
|
//! to the curvature's extremas and the Inflection's Points.
|
|
class LProp_CurAndInf
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT LProp_CurAndInf();
|
|
|
|
Standard_EXPORT void AddInflection (const Standard_Real Param);
|
|
|
|
Standard_EXPORT void AddExtCur (const Standard_Real Param, const Standard_Boolean IsMin);
|
|
|
|
Standard_EXPORT void Clear();
|
|
|
|
Standard_EXPORT Standard_Boolean IsEmpty() const;
|
|
|
|
//! Returns the number of points.
|
|
//! The Points are stored to increasing parameter.
|
|
Standard_EXPORT Standard_Integer NbPoints() const;
|
|
|
|
//! Returns the parameter of the Nth point.
|
|
//! raises if N not in the range [1,NbPoints()]
|
|
Standard_EXPORT Standard_Real Parameter (const Standard_Integer N) const;
|
|
|
|
//! Returns
|
|
//! - MinCur if the Nth parameter corresponds to
|
|
//! a minimum of the radius of curvature.
|
|
//! - MaxCur if the Nth parameter corresponds to
|
|
//! a maximum of the radius of curvature.
|
|
//! - Inflection if the parameter corresponds to
|
|
//! a point of inflection.
|
|
//! raises if N not in the range [1,NbPoints()]
|
|
Standard_EXPORT LProp_CIType Type (const Standard_Integer N) const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
TColStd_SequenceOfReal theParams;
|
|
LProp_SequenceOfCIType theTypes;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _LProp_CurAndInf_HeaderFile
|