{
const two = new Two({
width: width,
height: 300,
type: Two.Types.canvas
})
const group = two.makeGroup()
group.translation.set(two.width/2, two.height/2)
let arc = two.makeArcSegment(0, 0, 80, 120, 0, (Math.PI * 0.5))
arc.fill = 'red'
let clone = arc.clone()
clone.fill = 'green'
clone.opacity = 0.5
group.add(arc, clone)
two.update()
return two.renderer.domElement;
}