0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / BRep / BRep_Curve3D.cxx
CommitLineData
b311480e 1// Created on: 1993-07-06
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
42cf5bc1 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>
7fd59977 24
92efcf78 25IMPLEMENT_STANDARD_RTTIEXT(BRep_Curve3D,BRep_GCurve)
26
7fd59977 27//=======================================================================
28//function : BRep_Curve3D
29//purpose :
30//=======================================================================
7fd59977 31BRep_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
45void BRep_Curve3D::D0(const Standard_Real U, gp_Pnt& P) const
46{
47 // shoud be D0 NYI
48 P = myCurve->Value(U);
49}
50
51//=======================================================================
52//function : IsCurve3D
53//purpose :
54//=======================================================================
55
56Standard_Boolean BRep_Curve3D::IsCurve3D()const
57{
58 return Standard_True;
59}
60
61
62//=======================================================================
63//function : Curve3D
64//purpose :
65//=======================================================================
66
67const Handle(Geom_Curve)& BRep_Curve3D::Curve3D()const
68{
69 return myCurve;
70}
71
72
73//=======================================================================
74//function : Curve3D
75//purpose :
76//=======================================================================
77
78void BRep_Curve3D::Curve3D(const Handle(Geom_Curve)& C)
79{
80 myCurve = C;
81}
82
83//=======================================================================
84//function : Copy
85//purpose :
86//=======================================================================
87
88Handle(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}
bc73b006 95
96//=======================================================================
97//function : DumpJson
98//purpose :
99//=======================================================================
100void 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}