// Created on: 2005-10-05 // Created by: Mikhail KLOKOV // Copyright (c) 2005-2012 OPEN CASCADE SAS // // The content of this file is subject to the Open CASCADE Technology Public // License Version 6.5 (the "License"). You may not use the content of this file // except in compliance with the License. Please obtain a copy of the License // at http://www.opencascade.org and read it completely before using this file. // // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France. // // The Original Code and all software distributed under the License is // distributed on an "AS IS" basis, without warranty of any kind, and the // Initial Developer hereby disclaims all such warranties, including without // limitation, any warranties of merchantability, fitness for a particular // purpose or non-infringement. Please see the License for the specific terms // and conditions governing the rights and limitations under the License. inline void IntTools_SurfaceRangeSample::SetRanges(const IntTools_CurveRangeSample& theRangeU, const IntTools_CurveRangeSample& theRangeV) { myRangeU = theRangeU; myRangeV = theRangeV; } inline void IntTools_SurfaceRangeSample::GetRanges(IntTools_CurveRangeSample& theRangeU, IntTools_CurveRangeSample& theRangeV) const { theRangeU = myRangeU; theRangeV = myRangeV; } inline void IntTools_SurfaceRangeSample::SetIndexes(const Standard_Integer theIndexU, const Standard_Integer theIndexV) { myRangeU.SetRangeIndex(theIndexU); myRangeV.SetRangeIndex(theIndexV); } inline void IntTools_SurfaceRangeSample::GetIndexes(Standard_Integer& theIndexU,Standard_Integer& theIndexV) const { theIndexU = myRangeU.GetRangeIndex(); theIndexV = myRangeV.GetRangeIndex(); } inline void IntTools_SurfaceRangeSample::GetDepths(Standard_Integer& theDepthU,Standard_Integer& theDepthV) const { theDepthU = myRangeU.GetDepth(); theDepthV = myRangeV.GetDepth(); } inline void IntTools_SurfaceRangeSample::SetSampleRangeU(const IntTools_CurveRangeSample& theRangeSampleU) { myRangeU = theRangeSampleU; } inline const IntTools_CurveRangeSample& IntTools_SurfaceRangeSample::GetSampleRangeU() const { return myRangeU; } inline void IntTools_SurfaceRangeSample::SetSampleRangeV(const IntTools_CurveRangeSample& theRangeSampleV) { myRangeV = theRangeSampleV; } inline const IntTools_CurveRangeSample& IntTools_SurfaceRangeSample::GetSampleRangeV() const { return myRangeV; } inline void IntTools_SurfaceRangeSample::SetIndexU(const Standard_Integer theIndexU) { myRangeU.SetRangeIndex(theIndexU); } inline Standard_Integer IntTools_SurfaceRangeSample::GetIndexU() const { return myRangeU.GetRangeIndex(); } inline void IntTools_SurfaceRangeSample::SetIndexV(const Standard_Integer theIndexV) { myRangeV.SetRangeIndex(theIndexV); } inline Standard_Integer IntTools_SurfaceRangeSample::GetIndexV() const { return myRangeV.GetRangeIndex(); } inline void IntTools_SurfaceRangeSample::SetDepthU(const Standard_Integer theDepthU) { myRangeU.SetDepth(theDepthU); } inline Standard_Integer IntTools_SurfaceRangeSample::GetDepthU() const { return myRangeU.GetDepth(); } inline void IntTools_SurfaceRangeSample::SetDepthV(const Standard_Integer theDepthV) { myRangeV.SetDepth(theDepthV); } inline Standard_Integer IntTools_SurfaceRangeSample::GetDepthV() const { return myRangeV.GetDepth(); } inline Standard_Boolean IntTools_SurfaceRangeSample::IsEqual(const IntTools_SurfaceRangeSample& Other) const { return (myRangeU.IsEqual(Other.myRangeU) && myRangeV.IsEqual(Other.myRangeV)); } inline Standard_Integer IntTools_SurfaceRangeSample::GetRangeIndexUDeeper(const Standard_Integer theNbSampleU) const { return myRangeU.GetRangeIndexDeeper(theNbSampleU); } inline Standard_Integer IntTools_SurfaceRangeSample::GetRangeIndexVDeeper(const Standard_Integer theNbSampleV) const { return myRangeV.GetRangeIndexDeeper(theNbSampleV); }