summaryrefslogtreecommitdiff
path: root/src/V2d/V2d_RectangularGraphicGrid.cdl
blob: eba366c1a4191d4426b89d2de597713aa47234a3 (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
-- File:	V2d_RectangularGraphicGrid.cdl
-- Created:	Fri Mar  3 14:20:51 1995
-- Author:	Jean-Louis Frenkel
--		<rmi@pernox>
---Copyright:	 Matra Datavision 1995

private class RectangularGraphicGrid from V2d inherits Primitive from Graphic2d


uses
	Drawer          from Graphic2d,
	GraphicObject	from Graphic2d,
	Length          from Quantity,
        GridDrawMode    from Aspect,
	FStream         from Aspect 
is

	Create (aGraphicObject: GraphicObject from Graphic2d;
		X, Y, alpha, beta, xo ,yo: Real from Standard;
                aTenthColorIndex: Integer from Standard)
	returns mutable RectangularGraphicGrid from V2d;

	SetDrawMode(me: mutable; aDrawMode: GridDrawMode from Aspect)
	is static;
	
	Draw (me: mutable; aDrawer: Drawer from Graphic2d)
	is redefined static protected;
	---Level: Internal
	---Purpose: Draws the grid

	Pick (me: mutable; X, Y: ShortReal from Standard;
		aPrecision: ShortReal from Standard;
		aDrawer: Drawer from Graphic2d)
	returns Boolean from Standard is redefined static protected;
	---Level: Internal
	---Purpose: Returns Standard_True if the infinite line <me> is picked,
	--	    Standard_False if not.

        DrawNetwork(me; aDrawer: Drawer from Graphic2d; 
                        alpha,step:ShortReal from Standard;
                        xfrom,yfrom, sizefrom: ShortReal from Standard )
	is static private;

        DrawPoints(me;  aDrawer: Drawer from Graphic2d; 
                        xfrom,yfrom, sizefrom: ShortReal from Standard )
	is static private;

	Save( me; aFStream: in out FStream from Aspect ) is virtual;

fields
	StepX, StepY,a1,a2,OX,OY: ShortReal from Standard;
        DrawMode: GridDrawMode from Aspect;
	myTenthColorIndex: Integer from Standard;
end RectangularGraphicGrid from V2d;