summaryrefslogtreecommitdiff
path: root/inc/GProp_VGPropsGK.lxx
blob: f53586587b20d84b592bc2d273aac41956cb7b11 (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
// File:	GProp_VGPropsGK.lxx
// Created:	Wed Dec 21 11:31:17 2005
// Author:	Sergey KHROMOV
//		<skv@dimox>


//==========================================================================
//function : Constructor
//           Empty constructor.
//==========================================================================

inline GProp_VGPropsGK::GProp_VGPropsGK()
     : myErrorReached(0.)
{
}

//==========================================================================
//function : SetLocation
//           Sets the vertex that delimit 3D closed region of space.
//==========================================================================

inline void GProp_VGPropsGK::SetLocation(const gp_Pnt &theVertex)
{
  loc = theVertex;
}

//==========================================================================
//function : GetErrorReached
//           Returns the reached Error.
//==========================================================================

inline Standard_Real GProp_VGPropsGK::GetErrorReached() const
{
  return myErrorReached;
}