// Created on: 1996-11-26 // Created by: Philippe MANGIN // Copyright (c) 1996-1999 Matra Datavision // Copyright (c) 1999-2014 OPEN CASCADE SAS // // This file is part of Open CASCADE Technology software library. // // This library is free software; you can redistribute it and/or modify it under // the terms of the GNU Lesser General Public License version 2.1 as published // by the Free Software Foundation, with special exception defined in the file // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT // distribution for complete text of the license and disclaimer of any warranty. // // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. #include #include #include #include #include #include inline Standard_Boolean BRepBlend_AppSurface::IsDone() const { return approx.IsDone(); } inline Standard_Integer BRepBlend_AppSurface::UDegree() const { return approx.UDegree(); } inline Standard_Integer BRepBlend_AppSurface::VDegree() const { return approx.VDegree(); } inline const TColgp_Array2OfPnt& BRepBlend_AppSurface::SurfPoles() const { return approx.SurfPoles(); } inline const TColStd_Array2OfReal& BRepBlend_AppSurface::SurfWeights() const { return approx.SurfWeights(); } inline const TColStd_Array1OfReal& BRepBlend_AppSurface::SurfUKnots() const { return approx.SurfUKnots(); } inline const TColStd_Array1OfReal& BRepBlend_AppSurface::SurfVKnots() const { return approx.SurfVKnots(); } inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::SurfUMults() const { return approx.SurfUMults(); } inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::SurfVMults() const { return approx.SurfVMults(); } inline Standard_Integer BRepBlend_AppSurface::NbCurves2d() const { return approx.NbCurves2d(); } inline Standard_Integer BRepBlend_AppSurface::Curves2dDegree() const { return approx.Curves2dDegree(); } inline const TColgp_Array1OfPnt2d& BRepBlend_AppSurface::Curve2dPoles(const Standard_Integer Index) const { return approx.Curve2dPoles(Index); } inline const TColStd_Array1OfReal& BRepBlend_AppSurface::Curves2dKnots() const { return approx.Curves2dKnots(); } inline const TColStd_Array1OfInteger& BRepBlend_AppSurface::Curves2dMults () const { return approx.Curves2dMults(); }