Files
OCCT/src/ModelingAlgorithms/TKHLR/HLRBRep/HLRBRep_TheIntConicCurveOfCInter.hxx
Pasukhin Dmitry 4c975e6a62 Coding - Refactor HLRBRep algorithms to replace Standard_Address (#961)
- Updated multiple files in the HLRBRep module to replace occurrences of Standard_Address with new type aliases HLRBRep_CurvePtr and HLRBRep_SurfacePtr.
- Introduced HLRBRep_TypeDef.hxx to define these type aliases for better clarity and maintainability.
- Adjusted constructors, method signatures, and internal variable types to use the new pointer types.
- Ensured compatibility with existing functionality while enhancing type safety and readability.
2025-12-28 11:16:27 +00:00

180 lines
8.0 KiB
C++

// Created on: 1992-10-14
// Created by: Christophe MARION
// 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 _HLRBRep_TheIntConicCurveOfCInter_HeaderFile
#define _HLRBRep_TheIntConicCurveOfCInter_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <HLRBRep_TypeDef.hxx>
#include <IntRes2d_Intersection.hxx>
class IntCurve_IConicTool;
class HLRBRep_CurveTool;
class HLRBRep_TheProjPCurOfCInter;
class HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter;
class HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter;
class gp_Lin2d;
class IntRes2d_Domain;
class gp_Circ2d;
class gp_Elips2d;
class gp_Parab2d;
class gp_Hypr2d;
class HLRBRep_TheIntConicCurveOfCInter : public IntRes2d_Intersection
{
public:
DEFINE_STANDARD_ALLOC
//! Empty constructor.
HLRBRep_TheIntConicCurveOfCInter();
//! Intersection between a line and a parametric curve.
HLRBRep_TheIntConicCurveOfCInter(const gp_Lin2d& L,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between a line and a parametric curve.
Standard_EXPORT HLRBRep_TheIntConicCurveOfCInter(const gp_Circ2d& C,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between an ellipse and a parametric curve.
Standard_EXPORT HLRBRep_TheIntConicCurveOfCInter(const gp_Elips2d& E,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between a parabola and a parametric curve.
Standard_EXPORT HLRBRep_TheIntConicCurveOfCInter(const gp_Parab2d& Prb,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between the main branch of an hyperbola
//! and a parametric curve.
Standard_EXPORT HLRBRep_TheIntConicCurveOfCInter(const gp_Hypr2d& H,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between a line and a parametric curve.
void Perform(const gp_Lin2d& L,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between a line and a parametric curve.
void Perform(const gp_Circ2d& C,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between an ellipse and a parametric curve.
void Perform(const gp_Elips2d& E,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between a parabola and a parametric curve.
void Perform(const gp_Parab2d& Prb,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
//! Intersection between the main branch of an hyperbola
//! and a parametric curve.
void Perform(const gp_Hypr2d& H,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
protected:
private:
//! Intersection between a conic fom gp
//! and a parametric curve.
void Perform(const IntCurve_IConicTool& ICurve,
const IntRes2d_Domain& D1,
const HLRBRep_CurvePtr& PCurve,
const IntRes2d_Domain& D2,
const Standard_Real TolConf,
const Standard_Real Tol);
};
#define TheImpTool IntCurve_IConicTool
#define TheImpTool_hxx <IntCurve_IConicTool.hxx>
#define ThePCurve HLRBRep_CurvePtr
#define ThePCurve_hxx <HLRBRep_CurvePtr.hxx>
#define ThePCurveTool HLRBRep_CurveTool
#define ThePCurveTool_hxx <HLRBRep_CurveTool.hxx>
#define TheProjPCur HLRBRep_TheProjPCurOfCInter
#define TheProjPCur_hxx <HLRBRep_TheProjPCurOfCInter.hxx>
#define IntCurve_TheIntersector HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter
#define IntCurve_TheIntersector_hxx <HLRBRep_TheIntersectorOfTheIntConicCurveOfCInter.hxx>
#define IntCurve_MyImpParToolOfTheIntersector \
HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter
#define IntCurve_MyImpParToolOfTheIntersector_hxx \
<HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx>
#define IntCurve_MyImpParToolOfTheIntersector \
HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter
#define IntCurve_MyImpParToolOfTheIntersector_hxx \
<HLRBRep_MyImpParToolOfTheIntersectorOfTheIntConicCurveOfCInter.hxx>
#define IntCurve_IntConicCurveGen HLRBRep_TheIntConicCurveOfCInter
#define IntCurve_IntConicCurveGen_hxx <HLRBRep_TheIntConicCurveOfCInter.hxx>
#include <IntCurve_IntConicCurveGen.lxx>
#undef TheImpTool
#undef TheImpTool_hxx
#undef ThePCurve
#undef ThePCurve_hxx
#undef ThePCurveTool
#undef ThePCurveTool_hxx
#undef TheProjPCur
#undef TheProjPCur_hxx
#undef IntCurve_TheIntersector
#undef IntCurve_TheIntersector_hxx
#undef IntCurve_MyImpParToolOfTheIntersector
#undef IntCurve_MyImpParToolOfTheIntersector_hxx
#undef IntCurve_MyImpParToolOfTheIntersector
#undef IntCurve_MyImpParToolOfTheIntersector_hxx
#undef IntCurve_IntConicCurveGen
#undef IntCurve_IntConicCurveGen_hxx
#endif // _HLRBRep_TheIntConicCurveOfCInter_HeaderFile