-- Created on: 1995-03-01 -- Created by: Arnaud BOUZY -- Copyright (c) 1995-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. class RadiusPresentation from DsgPrs ---Purpose: A framework to define display of radii. uses Presentation from Prs3d, Pnt from gp, Circ from gp, Drawer from Prs3d, ArrowSide from DsgPrs, ExtendedString from TCollection is Add( myclass; aPresentation: Presentation from Prs3d; aDrawer: Drawer from Prs3d; aText: ExtendedString from TCollection; AttachmentPoint : Pnt from gp; aCircle : Circ from gp; firstparam : Real; lastparam : Real; drawFromCenter : Boolean = Standard_True; reverseArrow : Boolean = Standard_False); ---Purpose: Adds the point AttachmentPoint, the circle aCircle, -- the text aText, and the parameters firstparam and -- lastparam to the presentation object aPresentation. -- The display attributes of these elements is defined by -- the attribute manager aDrawer. -- If the Boolean drawFromCenter is false, the -- arrowhead will point towards the center of aCircle. -- If the Boolean reverseArrow is true, the arrowhead -- will point away from the attachment point. Add( myclass; aPresentation: Presentation from Prs3d; aDrawer: Drawer from Prs3d; aText: ExtendedString from TCollection; AttachmentPoint : Pnt from gp; aCircle : Circ from gp; firstparam : Real; lastparam : Real; ArrowSide: ArrowSide from DsgPrs; drawFromCenter : Boolean = Standard_True; reverseArrow : Boolean = Standard_False); ---Purpose: Adds the point AttachmentPoint, the circle aCircle, -- the text aText, and the parameters firstparam and -- lastparam to the presentation object aPresentation. -- The display attributes of these elements is defined by -- the attribute manager aDrawer. -- The value of the enumeration Arrowside determines -- the type of arrow displayed: whether there will be -- arrowheads at both ends or only one, for example. -- If the Boolean drawFromCenter is false, the -- arrowhead will point towards the center of aCircle. -- If the Boolean reverseArrow is true, the arrowhead -- will point away from the attachment point. Add( myclass; aPresentation: Presentation from Prs3d; aDrawer: Drawer from Prs3d; aText: ExtendedString from TCollection; AttachmentPoint : Pnt from gp; Center : Pnt from gp; EndOfArrow : Pnt from gp; ArrowSide: ArrowSide from DsgPrs; drawFromCenter : Boolean = Standard_True; reverseArrow : Boolean = Standard_False); ---Purpose: Adds the circle aCircle, the text aText, the points -- AttachmentPoint, Center and EndOfArrow to the -- presentation object aPresentation. -- The display attributes of these elements is defined by -- the attribute manager aDrawer. -- The value of the enumeration Arrowside determines -- the type of arrow displayed: whether there will be -- arrowheads at both ends or only one, for example. -- If the Boolean drawFromCenter is false, the -- arrowhead will point towards the center of aCircle. -- If the Boolean reverseArrow is true, the arrowhead -- will point away from the attachment point. end RadiusPresentation;