0024047: Exception in TPrsStd_AISPresentation during destruction of TDocStd_Document
[occt.git] / src / AIS / AIS_EllipseRadiusDimension.cdl
CommitLineData
b311480e 1-- Created on: 1998-01-22
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
7fd59977 21
22
23deferred class EllipseRadiusDimension from AIS inherits Relation from AIS
24
25 ---Purpose:
26 -- Computes geometry ( basis curve and plane of dimension)
27 -- for input shape aShape from TopoDS
28 -- Root class for MinRadiusDimension and MaxRadiusDimension
29uses
30 Shape from TopoDS,
31 Elips from gp,
32 Pnt from gp,
33 Pln from gp,
34 Curve from Geom,
35 OffsetCurve from Geom,
36 Ellipse from Geom,
37 Plane from Geom,
38 Surface from Geom,
39 ExtendedString from TCollection,
40 KindOfSurface from AIS,
41 KindOfDimension from AIS
42
43is
44 Initialize(aShape : Shape from TopoDS;
45 aText : ExtendedString from TCollection);
46
47 -- Ellipse radius dimension of a Shape which can be Edge
48 -- or Face (planar or cylindrical(surface of extrusion or
49 -- surface of offset))
50
51
52
53 KindOfDimension(me) returns KindOfDimension from AIS
54 is redefined;
55
56 IsMovable(me) returns Boolean from Standard
57 is redefined;
58
59
60--
61-- Computation private methods
62--
63
64 ComputeGeometry( me: mutable ) ;
65-- is private;
66
67 ComputeFaceGeometry(me: mutable)
68 is private;
69
70 ComputeCylFaceGeometry(me: mutable;
71 aSurfType : KindOfSurface from AIS;
72 aSurf : Surface from Geom;
73 Offset : Real from Standard )
74 is private;
75
76 ComputePlanarFaceGeometry(me: mutable)
77 is private;
78
79 ComputeEdgeGeometry(me: mutable)
80 is private;
81
82fields
83
84 myEllipse : Elips from gp is protected;
85 myFirstPar : Real from Standard is protected;
86 myLastPar : Real from Standard is protected;
87 myIsAnArc : Boolean from Standard is protected;
88 myOffsetCurve : OffsetCurve from Geom is protected;
89 myOffset : Real from Standard is protected;
90 myIsOffset : Boolean from Standard is protected;
91
92end EllipseRadiusDimension;