0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / IntPatch / IntPatch_ArcFunction.lxx
CommitLineData
b311480e 1// Created on: 1993-06-07
2// Created by: Jacques GOUSSARD
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
17inline const gp_Pnt& IntPatch_ArcFunction::Valpoint (const Standard_Integer Index) const
18{
19 return seqpt(Index);
20}
21
c22b52d6 22inline void IntPatch_ArcFunction::Set(const Handle(Adaptor2d_Curve2d)& A)
7fd59977 23{
24 myArc = A;
25 seqpt.Clear();
26}
27
c22b52d6 28inline void IntPatch_ArcFunction::Set(const Handle(Adaptor3d_Surface)& S)
7fd59977 29{
30 mySurf = S;
31 seqpt.Clear();
32}
33
34inline void IntPatch_ArcFunction::SetQuadric(const IntSurf_Quadric& Q)
35{
36 myQuad = Q;
37 seqpt.Clear();
38}
39
40inline const IntSurf_Quadric& IntPatch_ArcFunction::Quadric() const
41{
42 return(myQuad);
43}
44
c22b52d6 45inline const Handle(Adaptor2d_Curve2d)& IntPatch_ArcFunction::Arc() const
7fd59977 46{
47 return(myArc);
48}
49
c22b52d6 50inline const Handle(Adaptor3d_Surface)& IntPatch_ArcFunction::Surface() const
7fd59977 51{
52 return(mySurf);
53}
f542b7bb 54
55inline const gp_Pnt& IntPatch_ArcFunction::LastComputedPoint() const
56{
57 return ptsol;
58}