blob: f47adfb66b4c3e41cd20c6359e4d583e479f52af (
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
|
-- File: TopOpeBRep_Bipoint.cdl
-- Created: Thu Jan 9 15:44:12 1997
-- Author: Jean Yves LEBEY
-- <jyl@bistrox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1997
class Bipoint from TopOpeBRep
uses
Integer from Standard
is
Create returns Bipoint from TopOpeBRep;
Create(I1,I2 : Integer from Standard) returns Bipoint from TopOpeBRep;
I1(me) returns Integer from Standard;
I2(me) returns Integer from Standard;
fields
myI1,myI2 : Integer from Standard;
end Bipoint;
|