blob: c9cd335298a49510e0a2e3ff9a07b8d0cfc3a2a0 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
--
-- File : PlaneSurface.cdl
-- Created : Sat 9 Jan 1993
-- Author : CKY / Contract Toubro-Larsen ( SIVA )
--
---Copyright : MATRA-DATAVISION 1993
--
class PlaneSurface from IGESSolid inherits IGESEntity
---Purpose: defines PlaneSurface, Type <190> Form Number <0,1>
-- in package IGESSolid
-- A plane surface entity is defined by a point on the
-- surface and a normal to it.
uses
Point from IGESGeom,
Direction from IGESGeom
is
Create returns mutable PlaneSurface;
-- Specific Methods pertaining to the class
Init (me : mutable;
aLocation : Point;
aNormal : Direction;
refdir : Direction);
---Purpose : This method is used to set the fields of the class
-- PlaneSurface
-- - aLocation : the point on the surface
-- - aNormal : the surface normal direction
-- - refdir : the reference direction (default NULL) for
-- unparameterised curves
LocationPoint(me) returns Point;
---Purpose : returns the point on the surface
Normal(me) returns Direction;
---Purpose : returns the normal to the surface
ReferenceDir(me) returns Direction;
---Purpose : returns the reference direction (for parameterised curve)
-- returns NULL for unparameterised curve
IsParametrised(me) returns Boolean;
---Purpose : returns True if parameterised, else False
fields
--
-- Class : IGESSolid_PlaneSurface
--
-- Purpose : Declaration of variables specific to the definition
-- of the Class PlaneSurface.
--
-- Reminder : A PlaneSurface instance is defined by :
-- A plane surface entity is defined by a point(Location) on the
-- surface and a normal(Normal) to it. In case of parameterised
-- surface a reference direction (RefDir) is also given.
--
theLocationPoint : Point;
-- the point on the surface
theNormal : Direction;
-- the normal to the surface
theRefDir : Direction;
-- the reference direction of the surface
end PlaneSurface;
|