BSplineCurves from 5 Curves

Hi all,
I need to knew if there is a function in OCC that Fill a Surface from 5 Curve. For 3 o 4 I use th GeomFill_BSplineCurves function.
Someone have an Idea?
Thanks

Roman Lygin's picture

Hi Gabrio,

Two recommendations:
- use GeomPlate in generic case (see Plate sample)
- if you know you can concatenate 2 or more curves into 1 (e.g. if continuity is respected), do so with GeomConvert::ConcatXX(). Then you will be able to use GeomFill_BSplineCurves for 2-4 curves.

HTH.
Roman