0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / BRep / BRep_PointOnCurve.cxx
CommitLineData
b311480e 1// Created on: 1993-08-10
2// Created by: Remi LEQUETTE
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
7fd59977 17
42cf5bc1 18#include <BRep_PointOnCurve.hxx>
19#include <Geom_Curve.hxx>
20#include <Standard_Type.hxx>
21#include <TopLoc_Location.hxx>
7fd59977 22
23//=======================================================================
24//function : BRep_PointOnCurve
25//purpose :
26//=======================================================================
7fd59977 27BRep_PointOnCurve::BRep_PointOnCurve(const Standard_Real P,
28 const Handle(Geom_Curve)& C,
29 const TopLoc_Location& L) :
30 BRep_PointRepresentation(P,L),
31 myCurve(C)
32{
33}
34
35
36//=======================================================================
37//function : IsPointOnCurve
38//purpose :
39//=======================================================================
40
41Standard_Boolean BRep_PointOnCurve::IsPointOnCurve()const
42{
43 return Standard_True;
44}
45
46
47//=======================================================================
48//function : IsPointOnCurve
49//purpose :
50//=======================================================================
51
52Standard_Boolean BRep_PointOnCurve::IsPointOnCurve
53 (const Handle(Geom_Curve)& C,
54 const TopLoc_Location& L)const
55{
56 return (myCurve == C) && (Location() == L);
57}
58
59
60//=======================================================================
61//function : Curve
62//purpose :
63//=======================================================================
64
65const Handle(Geom_Curve)& BRep_PointOnCurve::Curve()const
66{
67 return myCurve;
68}
69
70
71//=======================================================================
72//function : Curve
73//purpose :
74//=======================================================================
75
76void BRep_PointOnCurve::Curve(const Handle(Geom_Curve)& C)
77{
78 myCurve = C;
79}
80
81