0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / TopOpeBRepDS / TopOpeBRepDS_CurvePointInterference.cxx
CommitLineData
b311480e 1// Created on: 1993-06-23
2// Created by: Jean Yves LEBEY
3// Copyright (c) 1993-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
17#include <TopOpeBRepDS_CurvePointInterference.ixx>
18
19//=======================================================================
20//function : TopOpeBRepDS_CurvePointInterference
21//purpose :
22//=======================================================================
23
24TopOpeBRepDS_CurvePointInterference::TopOpeBRepDS_CurvePointInterference
25 (const TopOpeBRepDS_Transition& T,
26 const TopOpeBRepDS_Kind ST,
27 const Standard_Integer S,
28 const TopOpeBRepDS_Kind GT,
29 const Standard_Integer G,
30 const Standard_Real P) :
31 TopOpeBRepDS_Interference(T,ST,S,GT,G),
32 myParam(P)
33{
34}
35
36
37//=======================================================================
38//function : Parameter
39//purpose :
40//=======================================================================
41
42Standard_Real TopOpeBRepDS_CurvePointInterference::Parameter()const
43{
44 return myParam;
45}
46
47
48//=======================================================================
49//function : Parameter
50//purpose :
51//=======================================================================
52
53void TopOpeBRepDS_CurvePointInterference::Parameter(const Standard_Real P)
54{
55 myParam = P;
56}
57
58
59//=======================================================================
60//function : Dump
61//purpose :
62//=======================================================================
63
64Standard_OStream& TopOpeBRepDS_CurvePointInterference::Dump
65 (Standard_OStream& OS) const
66{
67#ifdef DEB
68 TopOpeBRepDS_Kind supporttype = SupportType();
69 if (supporttype == TopOpeBRepDS_EDGE) OS<<"EPI";
70 else if (supporttype == TopOpeBRepDS_CURVE) OS<<"CPI";
71 else if (supporttype == TopOpeBRepDS_FACE) OS<<"ECPI";
72 else OS<<"???";
73 OS<<" "; TopOpeBRepDS_Interference::Dump(OS);
74 OS<<" "<<myParam;
75#endif
76
77 return OS;
78}