Home › Forums › Nazca › Bent Taper › Reply To: Bent Taper
5 November 2018 at 16:47
#5256
Keymaster
Dear Douglas,
If a xsection has the ‘minimum_radius’ defined then pcurve will use it.
If a xsection does not have the ‘minimum_radius’, then a minimum of 0 is used, effectively taking down the radius check.
An example to set or update the xsection minimum radius to 100 um looks as follows:
import nazca as nd
xs = nd.get_xsection(<xsection_name_string>) # get the xsection object if you know its name.
xs.minimum_radius = 100
where ‘xsection_name_string’ should be replaced by an existing xsection name.
Ronald