mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-04 13:13:25 +03:00
93 lines
2.1 KiB
C++
93 lines
2.1 KiB
C++
// Created on: 1992-05-27
|
|
// Created by: Remi LEQUETTE
|
|
// 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 _BRep_TVertex_HeaderFile
|
|
#define _BRep_TVertex_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <gp_Pnt.hxx>
|
|
#include <Standard_Real.hxx>
|
|
#include <BRep_ListOfPointRepresentation.hxx>
|
|
#include <TopoDS_TVertex.hxx>
|
|
class gp_Pnt;
|
|
class TopoDS_TShape;
|
|
|
|
|
|
class BRep_TVertex;
|
|
DEFINE_STANDARD_HANDLE(BRep_TVertex, TopoDS_TVertex)
|
|
|
|
//! The TVertex from BRep inherits from the TVertex
|
|
//! from TopoDS. It contains the geometric data.
|
|
//!
|
|
//! The TVertex contains a 3d point, location and a tolerance.
|
|
class BRep_TVertex : public TopoDS_TVertex
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
Standard_EXPORT BRep_TVertex();
|
|
|
|
Standard_Real Tolerance() const;
|
|
|
|
void Tolerance (const Standard_Real T);
|
|
|
|
//! Sets the tolerance to the max of <T> and the
|
|
//! current tolerance.
|
|
void UpdateTolerance (const Standard_Real T);
|
|
|
|
const gp_Pnt& Pnt() const;
|
|
|
|
void Pnt (const gp_Pnt& P);
|
|
|
|
const BRep_ListOfPointRepresentation& Points() const;
|
|
|
|
BRep_ListOfPointRepresentation& ChangePoints();
|
|
|
|
//! Returns a copy of the TShape with no sub-shapes.
|
|
Standard_EXPORT Handle(TopoDS_TShape) EmptyCopy() const Standard_OVERRIDE;
|
|
|
|
|
|
|
|
|
|
DEFINE_STANDARD_RTTIEXT(BRep_TVertex,TopoDS_TVertex)
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
gp_Pnt myPnt;
|
|
Standard_Real myTolerance;
|
|
BRep_ListOfPointRepresentation myPoints;
|
|
|
|
|
|
};
|
|
|
|
|
|
#include <BRep_TVertex.lxx>
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _BRep_TVertex_HeaderFile
|