0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / PrsDim / PrsDim_MaxRadiusDimension.hxx
CommitLineData
42cf5bc1 1// Created on: 1998-01-22
2// Created by: Sergey ZARITCHNY
3// Copyright (c) 1998-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
787ff240 17#ifndef _PrsDim_MaxRadiusDimension_HeaderFile
18#define _PrsDim_MaxRadiusDimension_HeaderFile
42cf5bc1 19
787ff240 20#include <PrsDim_EllipseRadiusDimension.hxx>
42cf5bc1 21#include <DsgPrs_ArrowSide.hxx>
42cf5bc1 22
787ff240 23DEFINE_STANDARD_HANDLE(PrsDim_MaxRadiusDimension, PrsDim_EllipseRadiusDimension)
42cf5bc1 24
42cf5bc1 25//! Ellipse Max radius dimension of a Shape which can be Edge
26//! or Face (planar or cylindrical(surface of extrusion or
27//! surface of offset))
787ff240 28class PrsDim_MaxRadiusDimension : public PrsDim_EllipseRadiusDimension
42cf5bc1 29{
787ff240 30 DEFINE_STANDARD_RTTIEXT(PrsDim_MaxRadiusDimension, PrsDim_EllipseRadiusDimension)
42cf5bc1 31public:
32
42cf5bc1 33 //! Max Ellipse radius dimension
34 //! Shape can be edge , planar face or cylindrical face
787ff240 35 Standard_EXPORT PrsDim_MaxRadiusDimension(const TopoDS_Shape& aShape, const Standard_Real aVal, const TCollection_ExtendedString& aText);
42cf5bc1 36
37 //! Max Ellipse radius dimension with position
38 //! Shape can be edge , planar face or cylindrical face
787ff240 39 Standard_EXPORT PrsDim_MaxRadiusDimension(const TopoDS_Shape& aShape, const Standard_Real aVal, const TCollection_ExtendedString& aText, const gp_Pnt& aPosition, const DsgPrs_ArrowSide aSymbolPrs, const Standard_Real anArrowSize = 0.0);
42cf5bc1 40
42cf5bc1 41private:
42
decbff0d 43 Standard_EXPORT virtual void Compute (const Handle(PrsMgr_PresentationManager)& thePrsMgr,
44 const Handle(Prs3d_Presentation)& thePrs,
45 const Standard_Integer theMode) Standard_OVERRIDE;
46
47 Standard_EXPORT virtual void ComputeSelection (const Handle(SelectMgr_Selection)& theSel,
48 const Standard_Integer theMode) Standard_OVERRIDE;
49
42cf5bc1 50 Standard_EXPORT void ComputeEllipse (const Handle(Prs3d_Presentation)& aPresentation);
decbff0d 51
42cf5bc1 52 Standard_EXPORT void ComputeArcOfEllipse (const Handle(Prs3d_Presentation)& aPresentation);
53
787ff240 54private:
55
42cf5bc1 56 gp_Pnt myApexP;
57 gp_Pnt myApexN;
58 gp_Pnt myEndOfArrow;
59
42cf5bc1 60};
61
787ff240 62#endif // _PrsDim_MaxRadiusDimension_HeaderFile