mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 10:10:56 +08: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;
|
|
}
|
|
|
|
|