1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-06-25 12:04:07 +03:00
occt/src/GeomFill/GeomFill_TgtOnCoons.hxx

80 lines
2.0 KiB
C++

// Created on: 1995-12-04
// Created by: Laurent BOURESCHE
// Copyright (c) 1995-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 _GeomFill_TgtOnCoons_HeaderFile
#define _GeomFill_TgtOnCoons_HeaderFile
#include <Standard.hxx>
#include <Standard_Type.hxx>
#include <Standard_Integer.hxx>
#include <GeomFill_TgtField.hxx>
class GeomFill_CoonsAlgPatch;
class gp_Vec;
class GeomFill_TgtOnCoons;
DEFINE_STANDARD_HANDLE(GeomFill_TgtOnCoons, GeomFill_TgtField)
//! Defines an algorithmic tangents field on a
//! boundary of a CoonsAlgPatch.
class GeomFill_TgtOnCoons : public GeomFill_TgtField
{
public:
Standard_EXPORT GeomFill_TgtOnCoons(const Handle(GeomFill_CoonsAlgPatch)& K, const Standard_Integer I);
//! Computes the value of the field of tangency at
//! parameter W.
Standard_EXPORT gp_Vec Value (const Standard_Real W) const Standard_OVERRIDE;
//! Computes the derivative of the field of tangency at
//! parameter W.
Standard_EXPORT gp_Vec D1 (const Standard_Real W) const Standard_OVERRIDE;
//! Computes the value and the derivative of the field of
//! tangency at parameter W.
Standard_EXPORT void D1 (const Standard_Real W, gp_Vec& T, gp_Vec& DT) const Standard_OVERRIDE;
DEFINE_STANDARD_RTTIEXT(GeomFill_TgtOnCoons,GeomFill_TgtField)
protected:
private:
Handle(GeomFill_CoonsAlgPatch) myK;
Standard_Integer ibound;
};
#endif // _GeomFill_TgtOnCoons_HeaderFile