mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-21 07:22:16 +08:00
- Deleted TopoDS_ListOfShape.hxx and removed its references in various files. - Replaced instances of TopoDS_ListOfShape with NCollection_List in TopoDS_Builder, TopoDS_Iterator, and TopoDS_TShape. - Updated CMake files to exclude TopoDS_ListOfShape from the build. - Removed Geom2dConvert_SequenceOfPPoint and its usages, replacing them with NCollection_Sequence. - Cleaned up Select3D and SelectMgr modules by removing Select3D_EntitySequence, Select3D_IndexedMapOfEntity, and SelectMgr_IndexedMapOfOwner. - Adjusted includes in various files to use NCollection types instead of removed classes. - Overall, this commit streamlines the codebase by eliminating unused types and reducing dependencies.
67 lines
2.5 KiB
C++
67 lines
2.5 KiB
C++
// Created on: 1991-01-14
|
|
// Created by: Arnaud BOUZY
|
|
// Copyright (c) 1991-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 _Expr_ArcTangent_HeaderFile
|
|
#define _Expr_ArcTangent_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
|
|
#include <Expr_UnaryExpression.hxx>
|
|
#include <NCollection_Array1.hxx>
|
|
class Expr_GeneralExpression;
|
|
class Expr_NamedUnknown;
|
|
class TCollection_AsciiString;
|
|
|
|
class Expr_ArcTangent : public Expr_UnaryExpression
|
|
{
|
|
|
|
public:
|
|
//! Creates the Arctan of <exp>.
|
|
Standard_EXPORT Expr_ArcTangent(const occ::handle<Expr_GeneralExpression>& exp);
|
|
|
|
//! Returns a GeneralExpression after a simplification
|
|
//! of the arguments of <me>.
|
|
Standard_EXPORT occ::handle<Expr_GeneralExpression> ShallowSimplified() const override;
|
|
|
|
//! Returns a copy of <me> having the same unknowns and functions.
|
|
Standard_EXPORT occ::handle<Expr_GeneralExpression> Copy() const override;
|
|
|
|
//! Tests if <me> and <Other> define the same expression.
|
|
//! This method does not include any simplification before
|
|
//! testing.
|
|
Standard_EXPORT bool IsIdentical(const occ::handle<Expr_GeneralExpression>& Other) const override;
|
|
|
|
Standard_EXPORT bool IsLinear() const override;
|
|
|
|
//! Returns the derivative on <X> unknown of <me>.
|
|
Standard_EXPORT occ::handle<Expr_GeneralExpression> Derivative(
|
|
const occ::handle<Expr_NamedUnknown>& X) const override;
|
|
|
|
//! Returns the value of <me> (as a Real) by
|
|
//! replacement of <vars> by <vals>.
|
|
//! Raises NotEvaluable if <me> contains NamedUnknown not
|
|
//! in <vars> or NumericError if result cannot be computed.
|
|
Standard_EXPORT double Evaluate(const NCollection_Array1<occ::handle<Expr_NamedUnknown>>& vars,
|
|
const NCollection_Array1<double>& vals) const override;
|
|
|
|
//! returns a string representing <me> in a readable way.
|
|
Standard_EXPORT TCollection_AsciiString String() const override;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Expr_ArcTangent, Expr_UnaryExpression)
|
|
};
|
|
|
|
#endif // _Expr_ArcTangent_HeaderFile
|