shaper renaming created arcs

Hello,
I would like to rename the results created by the addArc method. In the attached script the renaming with the function setName doesn't seem to have an effect on arcs but the same procedure works with lines:
Best
Henning
PS the shaper is a signifcant step forward. Thanks for sharing it
Hi,
The name of sketch entities does not appear in the object browser. Their name is used for selection by naming.
If you name an arc "arc1" in the sketcher:
SketchArc_1.results()[1].setName("arc1")
You will be able to select it by:
model.selection("EDGE", "Sketch_1/arc1")
But what you probably want to do is to name the result edge like you made.
Or create a group named "arc1".
Christophe