Back to home page

EIC code displayed by LXR

 
 

    


Warning, /include/opencascade/BRepBlend_AppSurface.lxx is written in an unsupported language. File is not indexed.

0001 // Created on: 1996-11-26
0002 // Created by: Philippe MANGIN
0003 // Copyright (c) 1996-1999 Matra Datavision
0004 // Copyright (c) 1999-2014 OPEN CASCADE SAS
0005 //
0006 // This file is part of Open CASCADE Technology software library.
0007 //
0008 // This library is free software; you can redistribute it and/or modify it under
0009 // the terms of the GNU Lesser General Public License version 2.1 as published
0010 // by the Free Software Foundation, with special exception defined in the file
0011 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0012 // distribution for complete text of the license and disclaimer of any warranty.
0013 //
0014 // Alternatively, this file may be used under the terms of Open CASCADE
0015 // commercial license or contractual agreement.
0016 
0017 #include <StdFail_NotDone.hxx>
0018 #include <TColgp_HArray2OfPnt.hxx>
0019 #include <TColgp_HArray1OfPnt2d.hxx>
0020 #include <TColStd_HArray2OfReal.hxx>
0021 #include <TColStd_HArray1OfReal.hxx>
0022 #include <TColStd_HArray1OfInteger.hxx>
0023 
0024 inline Standard_Boolean BRepBlend_AppSurface::IsDone() const
0025 {
0026   return approx.IsDone();
0027 }
0028 
0029 inline Standard_Integer BRepBlend_AppSurface::UDegree() const
0030 {
0031   return approx.UDegree();
0032 }
0033 
0034 inline Standard_Integer BRepBlend_AppSurface::VDegree() const
0035 {
0036   return approx.VDegree();
0037 }
0038 
0039 inline const TColgp_Array2OfPnt& BRepBlend_AppSurface::SurfPoles() const
0040 {
0041   return approx.SurfPoles();
0042 }
0043 
0044 inline const TColStd_Array2OfReal& BRepBlend_AppSurface::SurfWeights() const
0045 {
0046   return approx.SurfWeights();
0047 }
0048 
0049 inline const TColStd_Array1OfReal& BRepBlend_AppSurface::SurfUKnots() const
0050 {
0051   return approx.SurfUKnots();
0052 }
0053 
0054 inline const TColStd_Array1OfReal& BRepBlend_AppSurface::SurfVKnots() const
0055 {
0056   return approx.SurfVKnots();
0057 }
0058 
0059 inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::SurfUMults() const
0060 {
0061   return approx.SurfUMults();
0062 }
0063 
0064 inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::SurfVMults() const
0065 {
0066   return approx.SurfVMults();
0067 }
0068 
0069 inline Standard_Integer BRepBlend_AppSurface::NbCurves2d() const
0070 {
0071   return approx.NbCurves2d();
0072 }
0073 
0074 inline Standard_Integer BRepBlend_AppSurface::Curves2dDegree() const
0075 {
0076   return approx.Curves2dDegree();
0077 }
0078 
0079 inline const TColgp_Array1OfPnt2d& BRepBlend_AppSurface::Curve2dPoles(
0080   const Standard_Integer Index) const
0081 {
0082   return approx.Curve2dPoles(Index);
0083 }
0084 
0085 inline const TColStd_Array1OfReal& BRepBlend_AppSurface::Curves2dKnots() const
0086 {
0087   return approx.Curves2dKnots();
0088 }
0089 
0090 inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::Curves2dMults() const
0091 {
0092   return approx.Curves2dMults();
0093 }