blob: 03634837eb592dc5d5f409ff05d1a2347b6539bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
-- File: StepFEA_NodeSet.cdl
-- Created: Thu Dec 12 17:51:06 2002
-- Author: data exchange team
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.2
-- Copyright: Open CASCADE 2002
class NodeSet from StepFEA
inherits GeometricRepresentationItem from StepGeom
---Purpose: Representation of STEP entity NodeSet
uses
HAsciiString from TCollection,
HArray1OfNodeRepresentation from StepFEA
is
Create returns NodeSet from StepFEA;
---Purpose: Empty constructor
Init (me: mutable; aRepresentationItem_Name: HAsciiString from TCollection;
aNodes: HArray1OfNodeRepresentation from StepFEA);
---Purpose: Initialize all fields (own and inherited)
Nodes (me) returns HArray1OfNodeRepresentation from StepFEA;
---Purpose: Returns field Nodes
SetNodes (me: mutable; Nodes: HArray1OfNodeRepresentation from StepFEA);
---Purpose: Set field Nodes
fields
theNodes: HArray1OfNodeRepresentation from StepFEA;
end NodeSet;
|