summaryrefslogtreecommitdiff
path: root/src/BRep/BRep_PointOnCurve.cxx
blob: d90e99d6b66ca791c08de643e5e3bb7f7e28531c (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// File:	BRep_PointOnCurve.cxx
// Created:	Tue Aug 10 14:44:47 1993
// Author:	Remi LEQUETTE
//		<rle@phylox>


#include <BRep_PointOnCurve.ixx>


//=======================================================================
//function : BRep_PointOnCurve
//purpose  : 
//=======================================================================

BRep_PointOnCurve::BRep_PointOnCurve(const Standard_Real P,
				     const Handle(Geom_Curve)& C, 
				     const TopLoc_Location& L) :
       BRep_PointRepresentation(P,L),
       myCurve(C)
{
}


//=======================================================================
//function : IsPointOnCurve
//purpose  : 
//=======================================================================

Standard_Boolean  BRep_PointOnCurve::IsPointOnCurve()const 
{
  return Standard_True;
}


//=======================================================================
//function : IsPointOnCurve
//purpose  : 
//=======================================================================

Standard_Boolean  BRep_PointOnCurve::IsPointOnCurve
  (const Handle(Geom_Curve)& C,
   const TopLoc_Location& L)const 
{
  return (myCurve == C) && (Location() == L);
}


//=======================================================================
//function : Curve
//purpose  : 
//=======================================================================

const Handle(Geom_Curve)&  BRep_PointOnCurve::Curve()const 
{
  return myCurve;
}


//=======================================================================
//function : Curve
//purpose  : 
//=======================================================================

void  BRep_PointOnCurve::Curve(const Handle(Geom_Curve)& C)
{
  myCurve = C;
}