1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

39
src/Draw/Draw_Text3D.cdl Executable file
View File

@@ -0,0 +1,39 @@
-- File: Text3D.cdl
-- Created: Wed Apr 29 15:29:05 1992
-- Author: Remi LEQUETTE
-- <rle@sdsun1>
---Copyright: Matra Datavision 1992
class Text3D from Draw inherits Drawable3D from Draw
---Purpose:
uses Pnt from gp,
Color from Draw,
Display from Draw,
AsciiString from TCollection
is
Create(p : Pnt; T : CString; col : Color)
returns mutable Text3D from Draw;
Create(p : Pnt; T : CString; col : Color;
moveX : Real; moveY : Real)
returns mutable Text3D from Draw;
SetPnt(me : mutable; p : Pnt);
DrawOn(me; dis : in out Display);
fields
myPoint : Pnt from gp;
myColor : Color from Draw;
myText : AsciiString from TCollection;
mymoveX : Real from Standard;
mymoveY : Real from Standard;
end Text3D;