mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Update empty method guards to new style with regex (see PR). Used clang-format 18.1.8. New actions to validate code formatting is added. Update .clang-format with disabling of include sorting. It is temporary changes, then include will be sorted. Apply formatting for /src and /tools folder. The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
58 lines
1.9 KiB
C++
58 lines
1.9 KiB
C++
// Created on: 1994-03-25
|
|
// Created by: model
|
|
// 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 _Adaptor3d_HVertex_HeaderFile
|
|
#define _Adaptor3d_HVertex_HeaderFile
|
|
|
|
#include <Adaptor2d_Curve2d.hxx>
|
|
#include <gp_Pnt2d.hxx>
|
|
#include <TopAbs_Orientation.hxx>
|
|
|
|
class Adaptor3d_HVertex;
|
|
DEFINE_STANDARD_HANDLE(Adaptor3d_HVertex, Standard_Transient)
|
|
|
|
class Adaptor3d_HVertex : public Standard_Transient
|
|
{
|
|
|
|
public:
|
|
Standard_EXPORT Adaptor3d_HVertex();
|
|
|
|
Standard_EXPORT Adaptor3d_HVertex(const gp_Pnt2d& P,
|
|
const TopAbs_Orientation Ori,
|
|
const Standard_Real Resolution);
|
|
|
|
Standard_EXPORT virtual gp_Pnt2d Value();
|
|
|
|
Standard_EXPORT virtual Standard_Real Parameter(const Handle(Adaptor2d_Curve2d)& C);
|
|
|
|
//! Parametric resolution (2d).
|
|
Standard_EXPORT virtual Standard_Real Resolution(const Handle(Adaptor2d_Curve2d)& C);
|
|
|
|
Standard_EXPORT virtual TopAbs_Orientation Orientation();
|
|
|
|
Standard_EXPORT virtual Standard_Boolean IsSame(const Handle(Adaptor3d_HVertex)& Other);
|
|
|
|
DEFINE_STANDARD_RTTIEXT(Adaptor3d_HVertex, Standard_Transient)
|
|
|
|
protected:
|
|
private:
|
|
gp_Pnt2d myPnt;
|
|
Standard_Real myTol;
|
|
TopAbs_Orientation myOri;
|
|
};
|
|
|
|
#endif // _Adaptor3d_HVertex_HeaderFile
|