1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-24 13:50:49 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

105
src/Geom/Geom_Surface.cxx Executable file
View File

@@ -0,0 +1,105 @@
// File: Geom_Surface.cxx
// Created: Wed Mar 10 10:27:16 1993
// Author: JCV
// <fid@phylox>
// Copyright: Matra Datavision 1993
//File Geom_Surface.cxx, JCV 17/01/91
#include <Geom_Surface.ixx>
typedef Geom_Surface Surface;
typedef Handle(Geom_Surface) Handle(Surface);
//=======================================================================
//function : UReversed
//purpose :
//=======================================================================
Handle(Surface) Geom_Surface::UReversed () const
{
Handle(Surface) S = Handle(Surface)::DownCast(Copy());
S->UReverse();
return S;
}
//=======================================================================
//function : VReversed
//purpose :
//=======================================================================
Handle(Surface) Geom_Surface::VReversed () const
{
Handle(Surface) S = Handle(Surface)::DownCast(Copy());
S->VReverse();
return S;
}
//=======================================================================
//function : TransformParameters
//purpose :
//=======================================================================
void Geom_Surface::TransformParameters(Standard_Real& ,
Standard_Real& ,
const gp_Trsf& ) const
{
}
//=======================================================================
//function : ParametricTransformation
//purpose :
//=======================================================================
gp_GTrsf2d Geom_Surface::ParametricTransformation(const gp_Trsf&) const
{
gp_GTrsf2d dummy;
return dummy;
}
//=======================================================================
//function : UPeriod
//purpose :
//=======================================================================
Standard_Real Geom_Surface::UPeriod() const
{
Standard_NoSuchObject_Raise_if
( !IsUPeriodic(),"Geom_Surface::UPeriod");
Standard_Real U1, U2, V1, V2;
Bounds(U1,U2,V1,V2);
return ( U2 - U1);
}
//=======================================================================
//function : VPeriod
//purpose :
//=======================================================================
Standard_Real Geom_Surface::VPeriod() const
{
Standard_NoSuchObject_Raise_if
( !IsVPeriodic(),"Geom_Surface::VPeriod");
Standard_Real U1, U2, V1, V2;
Bounds(U1,U2,V1,V2);
return ( V2 - V1);
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
gp_Pnt Geom_Surface::Value(const Standard_Real U,
const Standard_Real V)const
{
gp_Pnt P;
D0(U,V,P);
return P;
}