0026937: Eliminate NO_CXX_EXCEPTION macro support
[occt.git] / src / IntStart / IntStart_PathPoint.lxx
CommitLineData
b311480e 1// Copyright (c) 1995-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 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
973c2be1 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.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
7fd59977 15#include <Standard_DomainError.hxx>
16
17inline 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
31inline 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
43inline const gp_Pnt& IntStart_PathPoint::Value () const {
44
45 return point;
46}
47
48
49inline Standard_Real IntStart_PathPoint::Tolerance () const {
50
51 return tol;
52}
53
54inline Standard_Boolean IntStart_PathPoint::IsNew () const {
55
56 return isnew;
57}
58
59inline const TheVertex& IntStart_PathPoint::Vertex () const {
60
9775fa61 61 if (isnew) {throw Standard_DomainError();}
7fd59977 62 return vtx;
63}
64
65inline const TheArc& IntStart_PathPoint::Arc () const {
66
67 return arc;
68}
69
70inline Standard_Real IntStart_PathPoint::Parameter () const {
71
72 return param;
73}
74