0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / IntStart / IntStart_PathPoint.lxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #include <Standard_DomainError.hxx>
16
17 inline void IntStart_PathPoint::SetValue (const gp_Pnt& P,
18                                           const Standard_Real Tol,
19                                           const TheVertex& V,
20                                           const TheArc& A,
21                                           const Standard_Real Parameter) {
22
23   isnew = Standard_False;
24   point = P;
25   tol   = Tol;
26   vtx = V;
27   arc = A;
28   param = Parameter;
29 }
30
31 inline void IntStart_PathPoint::SetValue (const gp_Pnt& P,
32                                           const Standard_Real Tol,
33                                           const TheArc& A,
34                                           const Standard_Real Parameter) {
35
36   isnew = Standard_True;
37   point = P;
38   tol   = Tol;
39   arc   = A;
40   param = Parameter;
41 }
42
43 inline const gp_Pnt& IntStart_PathPoint::Value () const {
44
45   return point;
46 }
47
48
49 inline Standard_Real IntStart_PathPoint::Tolerance () const {
50
51   return tol;
52 }
53
54 inline Standard_Boolean IntStart_PathPoint::IsNew () const {
55
56   return isnew;
57 }
58
59 inline const TheVertex& IntStart_PathPoint::Vertex () const {
60
61   if (isnew) {throw Standard_DomainError();}
62   return vtx;
63 }
64
65 inline const TheArc& IntStart_PathPoint::Arc () const {
66
67   return arc;
68 }
69
70 inline Standard_Real IntStart_PathPoint::Parameter () const {
71
72   return param;
73 }
74