mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
25 lines
412 B
Plaintext
Executable File
25 lines
412 B
Plaintext
Executable File
inline void ISession2D_SensitiveCurve::SetMaxBoxes(const Standard_Integer MaxRect)
|
|
{
|
|
myMaxRect = MaxRect;
|
|
}
|
|
|
|
|
|
inline Standard_Integer ISession2D_SensitiveCurve::MaxBoxes()
|
|
{
|
|
return myMaxRect;
|
|
}
|
|
|
|
|
|
inline void ISession2D_SensitiveCurve::SetCurve(const Handle(Geom2d_Curve)& aCurve)
|
|
{
|
|
myCurve = aCurve;
|
|
}
|
|
|
|
|
|
inline Handle(Geom2d_Curve) ISession2D_SensitiveCurve::GetCurve()
|
|
{
|
|
return myCurve;
|
|
}
|
|
|
|
|