0024023: Revamp the OCCT Handle -- general
[occt.git] / src / Geom / Geom_Surface.cxx
CommitLineData
b311480e 1// Created on: 1993-03-10
2// Created by: JCV
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
17#include <Geom_Surface.ixx>
18
19typedef Geom_Surface Surface;
7fd59977 20
21//=======================================================================
22//function : UReversed
23//purpose :
24//=======================================================================
25
c04c30b3 26Handle(Geom_Surface) Geom_Surface::UReversed () const
7fd59977 27{
c04c30b3 28 Handle(Geom_Surface) S = Handle(Geom_Surface)::DownCast(Copy());
7fd59977 29 S->UReverse();
30 return S;
31}
32
33
34//=======================================================================
35//function : VReversed
36//purpose :
37//=======================================================================
38
c04c30b3 39Handle(Geom_Surface) Geom_Surface::VReversed () const
7fd59977 40{
c04c30b3 41 Handle(Geom_Surface) S = Handle(Geom_Surface)::DownCast(Copy());
7fd59977 42 S->VReverse();
43 return S;
44}
45
46
47//=======================================================================
48//function : TransformParameters
49//purpose :
50//=======================================================================
51
52void Geom_Surface::TransformParameters(Standard_Real& ,
53 Standard_Real& ,
54 const gp_Trsf& ) const
55{
56}
57
58//=======================================================================
59//function : ParametricTransformation
60//purpose :
61//=======================================================================
62
63gp_GTrsf2d Geom_Surface::ParametricTransformation(const gp_Trsf&) const
64{
65 gp_GTrsf2d dummy;
66 return dummy;
67}
68
69//=======================================================================
70//function : UPeriod
71//purpose :
72//=======================================================================
73
74Standard_Real Geom_Surface::UPeriod() const
75{
76 Standard_NoSuchObject_Raise_if
77 ( !IsUPeriodic(),"Geom_Surface::UPeriod");
78
79 Standard_Real U1, U2, V1, V2;
80 Bounds(U1,U2,V1,V2);
81 return ( U2 - U1);
82}
83
84
85//=======================================================================
86//function : VPeriod
87//purpose :
88//=======================================================================
89
90Standard_Real Geom_Surface::VPeriod() const
91{
92 Standard_NoSuchObject_Raise_if
93 ( !IsVPeriodic(),"Geom_Surface::VPeriod");
94
95 Standard_Real U1, U2, V1, V2;
96 Bounds(U1,U2,V1,V2);
97 return ( V2 - V1);
98}
99
100//=======================================================================
101//function : Value
102//purpose :
103//=======================================================================
104
105gp_Pnt Geom_Surface::Value(const Standard_Real U,
106 const Standard_Real V)const
107{
108 gp_Pnt P;
109 D0(U,V,P);
110 return P;
111}