mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-10 11:34:06 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
135 lines
4.0 KiB
Plaintext
135 lines
4.0 KiB
Plaintext
-- Created on: 1995-10-26
|
|
-- Created by: Yves FRICAUD
|
|
-- 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 Image from BRepAlgo
|
|
|
|
---Purpose: Stores link between a shape <S> and a shape <NewS>
|
|
-- obtained from <S>. <NewS> is an image of <S>.
|
|
|
|
uses
|
|
Shape from TopoDS,
|
|
ShapeEnum from TopAbs,
|
|
ListOfShape from TopTools,
|
|
DataMapOfShapeListOfShape from TopTools,
|
|
DataMapOfShapeShape from TopTools
|
|
|
|
raises
|
|
ConstructionError from Standard
|
|
|
|
is
|
|
Create;
|
|
|
|
SetRoot (me : in out; S : Shape from TopoDS)
|
|
is static;
|
|
|
|
|
|
Bind (me : in out; OldS : Shape from TopoDS;
|
|
NewS : Shape from TopoDS)
|
|
---Purpose: Links <NewS> as image of <OldS>.
|
|
raises
|
|
ConstructionError -- if Olds has image.
|
|
is static;
|
|
|
|
|
|
Bind (me : in out; OldS : Shape from TopoDS;
|
|
NewS : ListOfShape from TopTools)
|
|
---Purpose: Links <NewS> as image of <OldS>.
|
|
raises
|
|
ConstructionError -- if Olds has image.
|
|
is static;
|
|
|
|
|
|
Add (me : in out; OldS : Shape from TopoDS;
|
|
NewS : Shape from TopoDS)
|
|
---Purpose: Add <NewS> to the image of <OldS>.
|
|
raises
|
|
ConstructionError -- if Olds has not image.
|
|
is static;
|
|
|
|
|
|
Add (me : in out; OldS : Shape from TopoDS;
|
|
NewS : ListOfShape from TopTools)
|
|
---Purpose: Add <NewS> to the image of <OldS>.
|
|
raises
|
|
ConstructionError -- if Olds has not image.
|
|
is static;
|
|
|
|
Clear(me : in out)
|
|
is static;
|
|
|
|
Remove(me : in out; S : Shape from TopoDS)
|
|
---Purpose: Remove <S> to set of images.
|
|
raises
|
|
ConstructionError -- if S is not an image.
|
|
is static;
|
|
|
|
Roots (me)
|
|
---C++: return const &
|
|
returns ListOfShape from TopTools
|
|
is static;
|
|
|
|
IsImage (me; S : Shape from TopoDS)
|
|
returns Boolean from Standard
|
|
is static;
|
|
|
|
ImageFrom (me; S : Shape from TopoDS)
|
|
---Purpose: Returns the generator of <S>
|
|
---C++: return const &
|
|
returns Shape from TopoDS
|
|
is static;
|
|
|
|
Root (me; S : Shape from TopoDS)
|
|
---Purpose: Returns the upper generator of <S>
|
|
---C++: return const &
|
|
returns Shape from TopoDS
|
|
is static;
|
|
|
|
HasImage (me; S : Shape from TopoDS)
|
|
returns Boolean from Standard
|
|
is static;
|
|
|
|
Image (me; S : Shape from TopoDS)
|
|
---Purpose: Returns the Image of <S>.
|
|
-- Returns <S> in the list if HasImage(S) is false.
|
|
---C++: return const &
|
|
returns ListOfShape from TopTools
|
|
is static;
|
|
|
|
LastImage (me; S : Shape from TopoDS;
|
|
L : in out ListOfShape from TopTools)
|
|
---Purpose: Stores in <L> the images of images of...images of <S>.
|
|
-- <L> contains only <S> if HasImage(S) is false.
|
|
is static;
|
|
|
|
Compact (me : in out)
|
|
---Purpose: Keeps only the link between roots and lastimage.
|
|
is static;
|
|
|
|
Filter (me : in out;
|
|
S : Shape from TopoDS;
|
|
ShapeType : ShapeEnum from TopAbs);
|
|
---Purpose: Deletes in the images the shape of type <ShapeType>
|
|
-- which are not in <S>.
|
|
-- Warning: Compact() must be call before.
|
|
|
|
fields
|
|
|
|
roots : ListOfShape from TopTools;
|
|
up : DataMapOfShapeShape from TopTools;
|
|
down : DataMapOfShapeListOfShape from TopTools;
|
|
|
|
end Image;
|