mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-10 11:34:06 +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.
59 lines
2.5 KiB
C++
59 lines
2.5 KiB
C++
// Created on: 2016-04-19
|
|
// Copyright (c) 2016 OPEN CASCADE SAS
|
|
// Created by: Oleg AGASHIN
|
|
//
|
|
// 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 _BRepMesh_EdgeTessellationExtractor_HeaderFile
|
|
#define _BRepMesh_EdgeTessellationExtractor_HeaderFile
|
|
|
|
#include <IMeshTools_CurveTessellator.hxx>
|
|
#include <BRepMesh_EdgeParameterProvider.hxx>
|
|
#include <TColStd_Array1OfInteger.hxx>
|
|
#include <TopLoc_Location.hxx>
|
|
|
|
//! Auxiliary class implements functionality retrieving tessellated
|
|
//! representation of an edge stored in polygon.
|
|
class BRepMesh_EdgeTessellationExtractor : public IMeshTools_CurveTessellator
|
|
{
|
|
public:
|
|
//! Constructor.
|
|
Standard_EXPORT BRepMesh_EdgeTessellationExtractor(const IMeshData::IEdgeHandle& theEdge,
|
|
const IMeshData::IFaceHandle& theFace);
|
|
|
|
//! Destructor.
|
|
Standard_EXPORT virtual ~BRepMesh_EdgeTessellationExtractor();
|
|
|
|
//! Returns number of tessellation points.
|
|
Standard_EXPORT virtual Standard_Integer PointsNb() const Standard_OVERRIDE;
|
|
|
|
//! Returns parameters of solution with the given index.
|
|
//! @param theIndex index of tessellation point.
|
|
//! @param theParameter parameters on PCurve corresponded to the solution.
|
|
//! @param thePoint tessellation point.
|
|
//! @return True in case of valid result, false elewhere.
|
|
Standard_EXPORT virtual Standard_Boolean Value(const Standard_Integer theIndex,
|
|
gp_Pnt& thePoint,
|
|
Standard_Real& theParameter) const
|
|
Standard_OVERRIDE;
|
|
|
|
DEFINE_STANDARD_RTTIEXT(BRepMesh_EdgeTessellationExtractor, IMeshTools_CurveTessellator)
|
|
|
|
private:
|
|
BRepMesh_EdgeParameterProvider<Handle(TColStd_HArray1OfReal)> myProvider;
|
|
const Poly_Triangulation* myTriangulation;
|
|
const TColStd_Array1OfInteger* myIndices;
|
|
TopLoc_Location myLoc;
|
|
};
|
|
|
|
#endif
|