blob: 3377b50acc2298ff432a4e207bd63226a602fdd2 (
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
|
// File: Draw_Grid.lxx
// Created: Thu Feb 3 15:30:54 1994
// Author: Jean Marc LACHAUME
// <jml@phylox>
//=======================================================================
// Function : StepX
// Purpose : Returns the step along the X axis.
//=======================================================================
inline Standard_Real Draw_Grid::StepX () const
{
return myStepX ;
}
//=======================================================================
// Function : StepY
// Purpose : Returns the step along the Y axis.
//=======================================================================
inline Standard_Real Draw_Grid::StepY () const
{
return myStepY ;
}
//=======================================================================
// Function : StepZ
// Purpose : Returns the step along the Z axis.
//=======================================================================
inline Standard_Real Draw_Grid::StepZ () const
{
return myStepZ ;
}
//=======================================================================
// Function : IsActive
// Purpose : Returns if the grid is active or not.
//=======================================================================
inline Standard_Boolean Draw_Grid::IsActive () const
{
return myIsActive ;
}
|