0024830: Remove redundant keyword 'mutable' in CDL declarations
[occt.git] / src / DrawTrSurf / DrawTrSurf_BezierCurve2d.cdl
CommitLineData
b311480e 1-- Created on: 1992-05-22
2-- Created by: Jean Claude VAUTHIER
3-- Copyright (c) 1992-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 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
973c2be1 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.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class BezierCurve2d
18
19
20from DrawTrSurf
21
22
23inherits Curve2d from DrawTrSurf
24
25
26uses BezierCurve from Geom2d,
27 Color from Draw,
28 Display from Draw,
29 Drawable3D from Draw
30
31
32is
33
34
35 Create (C : BezierCurve from Geom2d)
36 --- Purpose :
37 -- creates a drawable Bezier curve from a Bezier curve of
38 -- package Geom2d.
6e33d3ce 39 returns BezierCurve2d from DrawTrSurf;
7fd59977 40
41
42 Create (C : BezierCurve from Geom2d;
43 CurvColor, PolesColor : Color from Draw;
44 ShowPoles : Boolean; Discret : Integer)
6e33d3ce 45 returns BezierCurve2d from DrawTrSurf;
7fd59977 46
47
48 DrawOn (me; dis : in out Display from Draw)
49 is redefined static;
50
51
52 ShowPoles (me : mutable)
53 is static;
54
55
56 ClearPoles (me : mutable)
57 is static;
58
59
60 FindPole(me; X,Y : Real; D : Display from Draw; Prec : Real;
61 Index : in out Integer)
62 --- Purpose :
63 -- Returns in <Index> the index of the first pole of the
64 -- curve projected by the Display <D> at a distance lower
65 -- than <Prec> from <X,Y>. If no pole is found index is
66 -- set to 0, else index is always greater than the input
67 -- value of index.
68 is static;
69
70
71 SetPolesColor (me : mutable; aColor : Color from Draw)
72 ---C++: inline
73 is static;
74
75 PolesColor (me) returns Color from Draw
76 ---C++: inline
77 is static;
78
6e33d3ce 79 Copy(me) returns Drawable3D from Draw
7fd59977 80 ---Purpose: For variable copy.
81 is redefined;
82
83
84fields
85
86 drawPoles : Boolean;
87 polesLook : Color from Draw;
88
89end BezierCurve2d;