0024162: Eliminate CLang compiler warning
[occt.git] / src / DsgPrs / DsgPrs_EllipseRadiusPresentation.cdl
1 -- Created on: 1998-01-26
2 -- Created by: Sergey ZARITCHNY
3 -- Copyright (c) 1998-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 class EllipseRadiusPresentation from DsgPrs 
24
25         ---Purpose: 
26
27 uses
28     Presentation from Prs3d,
29     Pnt          from gp,
30     Elips        from gp, 
31     OffsetCurve  from Geom,
32     Drawer       from Prs3d,
33     ArrowSide    from DsgPrs,
34     ExtendedString from TCollection
35
36 is
37       Add( myclass; aPresentation   : Presentation   from Prs3d;
38                     aDrawer         : Drawer         from Prs3d; 
39                     theval          : Real           from Standard;
40                     aText           : ExtendedString from TCollection; 
41                     AttachmentPoint : Pnt            from gp;
42                     anEndOfArrow    : Pnt            from gp; 
43                     aCenter         : Pnt            from gp; 
44                     IsMaxRadius     : Boolean        from  Standard;
45                     ArrowSide: ArrowSide             from DsgPrs);
46                    ---Purpose: draws a  Radius  (Major  or  Minor)   
47                    -- representation for whole ellipse  case
48                    
49     Add( myclass; aPresentation   : Presentation   from Prs3d;
50                   aDrawer         : Drawer         from Prs3d; 
51                   theval          : Real           from Standard;
52                   aText           : ExtendedString from TCollection; 
53                   anEllipse       : Elips          from gp;  
54                   AttachmentPoint : Pnt            from gp; 
55                   anEndOfArrow    : Pnt            from gp; 
56                   aCenter         : Pnt            from gp;
57                   uFirst          : Real           from Standard;  
58                   IsInDomain      : Boolean        from Standard; 
59                   IsMaxRadius     : Boolean        from Standard;
60                   ArrowSide       : ArrowSide      from DsgPrs);
61                    ---Purpose: draws a  Radius  (Major  or  Minor) representation     
62                    --  for arc of an ellipse  case 
63
64                    
65     Add( myclass; aPresentation   : Presentation   from Prs3d;
66                   aDrawer         : Drawer         from Prs3d; 
67                   theval          : Real           from Standard;
68                   aText           : ExtendedString from TCollection; 
69                   aCurve          : OffsetCurve    from Geom;
70                   AttachmentPoint : Pnt            from gp; 
71                   anEndOfArrow    : Pnt            from gp; 
72                   aCenter         : Pnt            from gp;
73                   uFirst          : Real           from Standard;  
74                   IsInDomain      : Boolean        from Standard; 
75                   IsMaxRadius     : Boolean        from Standard;
76                   ArrowSide       : ArrowSide      from DsgPrs);
77                    ---Purpose: draws a  Radius  (Major  or  Minor) representation     
78                    --  for arc of an offset  curve  from  ellipse
79
80 end EllipseRadiusPresentation;