mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-07 18:30:55 +03:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
141 lines
3.6 KiB
Plaintext
141 lines
3.6 KiB
Plaintext
// Created on: 2005-10-05
|
|
// Created by: Mikhail KLOKOV
|
|
// Copyright (c) 2005-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.
|
|
|
|
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);
|
|
}
|