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 
0025 inline Standard_Boolean BRepBlend_AppSurface::IsDone() const
0026 {
0027   return approx.IsDone();
0028 }
0029 
0030 
0031 inline Standard_Integer BRepBlend_AppSurface::UDegree() const
0032 {
0033   return approx.UDegree();
0034 }
0035 
0036 inline Standard_Integer BRepBlend_AppSurface::VDegree() const
0037 {
0038   return approx.VDegree();
0039 }
0040 
0041 inline const TColgp_Array2OfPnt& 
0042 BRepBlend_AppSurface::SurfPoles() const
0043 {
0044   return approx.SurfPoles();
0045 }
0046 
0047 inline const TColStd_Array2OfReal& 
0048 BRepBlend_AppSurface::SurfWeights() const
0049 {
0050   return approx.SurfWeights();
0051 }
0052 
0053 
0054 inline const TColStd_Array1OfReal& 
0055 BRepBlend_AppSurface::SurfUKnots() const
0056 {
0057    return approx.SurfUKnots(); 
0058 }
0059 
0060 inline const TColStd_Array1OfReal& 
0061 BRepBlend_AppSurface::SurfVKnots() const
0062 {
0063    return approx.SurfVKnots(); 
0064 }
0065 
0066 inline const TColStd_Array1OfInteger& 
0067 BRepBlend_AppSurface::SurfUMults() const
0068 {
0069    return approx.SurfUMults(); 
0070 }
0071 
0072 inline const TColStd_Array1OfInteger& 
0073 BRepBlend_AppSurface::SurfVMults() const
0074 {
0075   return approx.SurfVMults(); 
0076 }
0077 
0078 inline Standard_Integer BRepBlend_AppSurface::NbCurves2d() const
0079 {
0080  return approx.NbCurves2d();
0081 }
0082 
0083 inline Standard_Integer BRepBlend_AppSurface::Curves2dDegree() const
0084 {
0085   return approx.Curves2dDegree();
0086 }
0087 
0088 inline const TColgp_Array1OfPnt2d& 
0089 BRepBlend_AppSurface::Curve2dPoles(const Standard_Integer Index) const
0090 {
0091   return  approx.Curve2dPoles(Index);
0092 }
0093 
0094 inline const TColStd_Array1OfReal& 
0095 BRepBlend_AppSurface::Curves2dKnots() const
0096 {
0097    return approx.Curves2dKnots();
0098 }
0099 
0100 inline const TColStd_Array1OfInteger& 
0101 BRepBlend_AppSurface::Curves2dMults () const
0102 {
0103    return approx.Curves2dMults(); 
0104 }
0105 
0106