992beb0b7cac097928c548af78c572dd6d24d0a6
[occt.git] / src / BRep / BRep_Curve3D.cxx
1 // Created on: 1993-07-06
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
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
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.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17
18 #include <BRep_Curve3D.hxx>
19 #include <BRep_CurveRepresentation.hxx>
20 #include <Geom_Curve.hxx>
21 #include <gp_Pnt.hxx>
22 #include <Standard_Type.hxx>
23 #include <TopLoc_Location.hxx>
24
25 IMPLEMENT_STANDARD_RTTIEXT(BRep_Curve3D,BRep_GCurve)
26
27 //=======================================================================
28 //function : BRep_Curve3D
29 //purpose  : 
30 //=======================================================================
31 BRep_Curve3D::BRep_Curve3D(const Handle(Geom_Curve)& C,
32                            const TopLoc_Location& L) :
33                            BRep_GCurve(L,
34                            C.IsNull() ? RealFirst() : C->FirstParameter(),
35                            C.IsNull() ? RealLast()  : C->LastParameter()),
36                            myCurve(C)
37 {
38 }
39
40 //=======================================================================
41 //function : D0
42 //purpose  : 
43 //=======================================================================
44
45 void BRep_Curve3D::D0(const Standard_Real U, gp_Pnt& P) const
46 {
47   // should be D0 NYI
48   P = myCurve->Value(U);
49 }
50
51 //=======================================================================
52 //function : IsCurve3D
53 //purpose  : 
54 //=======================================================================
55
56 Standard_Boolean  BRep_Curve3D::IsCurve3D()const 
57 {
58   return Standard_True;
59 }
60
61
62 //=======================================================================
63 //function : Curve3D
64 //purpose  : 
65 //=======================================================================
66
67 const Handle(Geom_Curve)&  BRep_Curve3D::Curve3D()const 
68 {
69   return myCurve;
70 }
71
72
73 //=======================================================================
74 //function : Curve3D
75 //purpose  : 
76 //=======================================================================
77
78 void BRep_Curve3D::Curve3D(const Handle(Geom_Curve)& C)
79 {
80   myCurve = C;
81 }
82
83 //=======================================================================
84 //function : Copy
85 //purpose  : 
86 //=======================================================================
87
88 Handle(BRep_CurveRepresentation) BRep_Curve3D::Copy() const
89 {
90   Handle(BRep_Curve3D) C = new BRep_Curve3D(myCurve,Location());
91
92   C->SetRange(First(), Last());
93   return C;
94 }
95
96 //=======================================================================
97 //function : DumpJson
98 //purpose  : 
99 //=======================================================================
100 void BRep_Curve3D::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
101 {
102   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
103
104   OCCT_DUMP_BASE_CLASS (theOStream, theDepth, BRep_GCurve)
105
106   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myCurve.get())
107 }