1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-16 10:54:53 +03:00
occt/src/StepAP214/StepAP214_AutoDesignGroupedItem.cdl
abv d5f74e42d6 0024624: Lost word in license statement in source files
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.
2014-02-20 16:15:17 +04:00

93 lines
4.3 KiB
Plaintext

-- Created on: 1995-12-01
-- Created by: EXPRESS->CDL V0.2 Translator
-- 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 AutoDesignGroupedItem from StepAP214 inherits SelectType from StepData
-- <AutoDesignGroupedItem> is an EXPRESS Select Type construct translation.
-- it gathers : AdvancedBrepShapeRepresentation, AnnotationSymbol, CsgRepresentation, FacetedBrepShapeRepresentation, GeometricallyBoundedSurfaceShapeRepresentation, GeometricallyBoundedWireframeShapeRepresentation, ManifoldSurfaceShapeRepresentation, NonManifoldSurfaceShapeRepresentation, RepresentationItem, TemplateInstance
-- Rev4 adds : CsgShapeRepresentation, Representation, ShapeAspect, ShapeRepresentation
-- Rev4 removes : AnnotationSymbol, CsgRepresentation, NonManifoldSurfaceShapeRepresentation
uses
AdvancedBrepShapeRepresentation from StepShape,
CsgShapeRepresentation from StepShape,
FacetedBrepShapeRepresentation from StepShape,
GeometricallyBoundedSurfaceShapeRepresentation from StepShape,
GeometricallyBoundedWireframeShapeRepresentation from StepShape,
ManifoldSurfaceShapeRepresentation from StepShape,
Representation from StepRepr,
RepresentationItem from StepRepr,
ShapeAspect from StepRepr,
ShapeRepresentation from StepShape,
TemplateInstance from StepVisual
is
Create returns AutoDesignGroupedItem;
---Purpose : Returns a AutoDesignGroupedItem SelectType
CaseNum (me; ent : Transient) returns Integer;
---Purpose: Recognizes a AutoDesignGroupedItem Kind Entity that is :
-- 1 -> AdvancedBrepShapeRepresentation
-- 2 -> CsgShapeRepresentation
-- 3 -> FacetedBrepShapeRepresentation
-- 4 -> GeometricallyBoundedSurfaceShapeRepresentation
-- 5 -> GeometricallyBoundedWireframeShapeRepresentation
-- 6 -> ManifoldSurfaceShapeRepresentation
-- 7 -> Representation
-- 8 -> RepresentationItem
-- 9 -> ShapeAspect
-- 10 -> ShapeRepresentation
-- 11 -> TemplateInstance
-- 0 else
AdvancedBrepShapeRepresentation (me) returns any AdvancedBrepShapeRepresentation;
---Purpose : returns Value as a AdvancedBrepShapeRepresentation (Null if another type)
CsgShapeRepresentation (me) returns any CsgShapeRepresentation;
---Purpose : returns Value as a CsgShapeRepresentation (Null if another type)
FacetedBrepShapeRepresentation (me) returns any FacetedBrepShapeRepresentation;
---Purpose : returns Value as a FacetedBrepShapeRepresentation (Null if another type)
GeometricallyBoundedSurfaceShapeRepresentation (me) returns any GeometricallyBoundedSurfaceShapeRepresentation;
---Purpose : returns Value as a GeometricallyBoundedSurfaceShapeRepresentation (Null if another type)
GeometricallyBoundedWireframeShapeRepresentation (me) returns any GeometricallyBoundedWireframeShapeRepresentation;
---Purpose : returns Value as a GeometricallyBoundedWireframeShapeRepresentation (Null if another type)
ManifoldSurfaceShapeRepresentation (me) returns any ManifoldSurfaceShapeRepresentation;
---Purpose : returns Value as a ManifoldSurfaceShapeRepresentation (Null if another type)
Representation (me) returns any Representation;
---Purpose : returns Value as a Representation (Null if another type)
RepresentationItem (me) returns any RepresentationItem;
---Purpose : returns Value as a RepresentationItem (Null if another type)
ShapeAspect (me) returns any ShapeAspect;
---Purpose : returns Value as a ShapeAspect (Null if another type)
ShapeRepresentation (me) returns any ShapeRepresentation;
---Purpose : returns Value as a ShapeRepresentation (Null if another type)
TemplateInstance (me) returns any TemplateInstance;
---Purpose : returns Value as a TemplateInstance (Null if another type)
end AutoDesignGroupedItem;