mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-15 11:44:07 +03:00
Redundant keyword 'mutable' removed in CDL files. In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed. Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
92 lines
2.2 KiB
Plaintext
92 lines
2.2 KiB
Plaintext
-- Created on: 1991-04-24
|
|
-- Created by: Arnaud BOUZY
|
|
-- Copyright (c) 1991-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.
|
|
|
|
deferred class Drawable3D from Draw inherits TShared from MMgt
|
|
|
|
---Purpose:
|
|
|
|
uses Color from Draw,
|
|
Display from Draw,
|
|
Interpretor from Draw,
|
|
OStream
|
|
|
|
is
|
|
|
|
Initialize;
|
|
|
|
DrawOn(me; dis : in out Display)
|
|
is deferred;
|
|
|
|
PickReject(me; X,Y,Prec : Real) returns Boolean
|
|
---Purpose: Returs True if the pick is outside the box
|
|
is virtual;
|
|
|
|
Copy(me) returns Drawable3D from Draw
|
|
is virtual;
|
|
---Purpose: For variable copy.
|
|
|
|
Dump(me; S : in out OStream)
|
|
is virtual;
|
|
---Purpose: For variable dump.
|
|
|
|
Whatis(me; I : in out Interpretor from Draw)
|
|
is virtual;
|
|
---Purpose: For variable whatis command. Set as a result the
|
|
-- type of the variable.
|
|
|
|
Is3D(me) returns Boolean
|
|
is virtual;
|
|
---Purpose: Is a 3D object. (Default True).
|
|
|
|
SetBounds(me : mutable; xmin,xmax,ymin,ymax : Real)
|
|
is static;
|
|
|
|
Bounds(me; xmin,xmax,ymin,ymax : out Real)
|
|
is static;
|
|
|
|
Visible(me) returns Boolean;
|
|
---C++: inline
|
|
|
|
Visible(me : mutable; V : Boolean);
|
|
---C++: inline
|
|
|
|
Protected(me) returns Boolean;
|
|
---C++: inline
|
|
|
|
Protected(me : mutable; P : Boolean);
|
|
---C++: inline
|
|
|
|
Name(me) returns CString;
|
|
---C++: inline
|
|
|
|
Name(me : mutable; N : CString)
|
|
is virtual;
|
|
---C++: inline
|
|
|
|
|
|
fields
|
|
|
|
myXmin : Real;
|
|
myXmax : Real;
|
|
myYmin : Real;
|
|
myYmax : Real;
|
|
|
|
isVisible : Boolean;
|
|
isProtected : Boolean;
|
|
myName : CString;
|
|
|
|
end Drawable3D;
|