mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface now inherit Standard_Transient. Interfaces Adaptor2d_HCurve2d, Adaptor3d_HCurve, Adaptor3d_HSurface and their subclasses are now aliases to Adaptor2d_Curve2d, Adaptor3d_Curve and Adaptor3d_Surface. Removed numerous unsafe reinterpret casts. Generic classes Adaptor3d_GenHCurve, Adaptor3d_GenHSurface, Adaptor2d_GenHCurve2d have been removed. Several redundant .lxx files have been merged into .hxx. Removed obsolete adaptor classes with H suffix.
114 lines
3.1 KiB
C++
114 lines
3.1 KiB
C++
// Created on: 1992-05-06
|
|
// Created by: Jacques GOUSSARD
|
|
// Copyright (c) 1992-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 _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile
|
|
#define _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Standard_Boolean.hxx>
|
|
#include <IntPatch_ThePathPointOfTheSOnBounds.hxx>
|
|
|
|
class Standard_DomainError;
|
|
class Adaptor3d_HVertex;
|
|
class IntPatch_ThePathPointOfTheSOnBounds;
|
|
|
|
|
|
|
|
class IntPatch_TheSegmentOfTheSOnBounds
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Empty constructor.
|
|
Standard_EXPORT IntPatch_TheSegmentOfTheSOnBounds();
|
|
|
|
//! Defines the concerned arc.
|
|
void SetValue (const Handle(Adaptor2d_Curve2d)& A);
|
|
|
|
//! Defines the first point or the last point,
|
|
//! depending on the value of the boolean First.
|
|
Standard_EXPORT void SetLimitPoint (const IntPatch_ThePathPointOfTheSOnBounds& V, const Standard_Boolean First);
|
|
|
|
//! Returns the geometric curve on the surface 's domain
|
|
//! which is solution.
|
|
const Handle(Adaptor2d_Curve2d)& Curve() const;
|
|
|
|
//! Returns True if there is a vertex (ThePathPoint) defining
|
|
//! the lowest valid parameter on the arc.
|
|
Standard_Boolean HasFirstPoint() const;
|
|
|
|
//! Returns the first point.
|
|
const IntPatch_ThePathPointOfTheSOnBounds& FirstPoint() const;
|
|
|
|
//! Returns True if there is a vertex (ThePathPoint) defining
|
|
//! the greatest valid parameter on the arc.
|
|
Standard_Boolean HasLastPoint() const;
|
|
|
|
//! Returns the last point.
|
|
const IntPatch_ThePathPointOfTheSOnBounds& LastPoint() const;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Handle(Adaptor2d_Curve2d) arc;
|
|
Standard_Boolean hasfp;
|
|
IntPatch_ThePathPointOfTheSOnBounds thefp;
|
|
Standard_Boolean haslp;
|
|
IntPatch_ThePathPointOfTheSOnBounds thelp;
|
|
|
|
|
|
};
|
|
|
|
#define TheVertex Handle(Adaptor3d_HVertex)
|
|
#define TheVertex_hxx <Adaptor3d_HVertex.hxx>
|
|
#define TheArc Handle(Adaptor2d_Curve2d)
|
|
#define TheArc_hxx <Adaptor2d_Curve2d.hxx>
|
|
#define ThePathPoint IntPatch_ThePathPointOfTheSOnBounds
|
|
#define ThePathPoint_hxx <IntPatch_ThePathPointOfTheSOnBounds.hxx>
|
|
#define IntStart_Segment IntPatch_TheSegmentOfTheSOnBounds
|
|
#define IntStart_Segment_hxx <IntPatch_TheSegmentOfTheSOnBounds.hxx>
|
|
|
|
#include <IntStart_Segment.lxx>
|
|
|
|
#undef TheVertex
|
|
#undef TheVertex_hxx
|
|
#undef TheArc
|
|
#undef TheArc_hxx
|
|
#undef ThePathPoint
|
|
#undef ThePathPoint_hxx
|
|
#undef IntStart_Segment
|
|
#undef IntStart_Segment_hxx
|
|
|
|
|
|
|
|
|
|
#endif // _IntPatch_TheSegmentOfTheSOnBounds_HeaderFile
|