blob: 8072b35135d324b9e557186a7d7fc06644694e1b (
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
|
-- File: IntPatch_RstInt.cdl
-- Created: Fri May 7 12:45:18 1993
-- Author: Jacques GOUSSARD
---Copyright: Matra Datavision 1993
class RstInt from IntPatch
---Purpose: trouver les points d intersection entre la ligne de
-- cheminement et les arcs de restriction
uses Polygo from IntPatch,
PolygoTool from IntPatch,
Line from IntPatch,
HSurface from Adaptor3d,
TopolTool from Adaptor3d
raises DomainError from Standard
is
PutVertexOnLine(myclass;
L : in out Line from IntPatch;
Surf : HSurface from Adaptor3d;
Domain : TopolTool from Adaptor3d;
OtherSurf : HSurface from Adaptor3d;
OnFirst : Boolean from Standard ;
Tol : Real from Standard)
raises DomainError from Standard;
--- The exception is raised if the Line from is neither
-- a WLine nor a RLine.
end RstInt;
|