Chamfer two Curves

I´m using c#.

I want to chamfer two curves but I don´t know how to do it.

I would like to do something similar to Fillet ( Curve.CreateFillet(curve0, curve1, radius, crv0_t, crv1_t) ) but using chamfer

Is it possible?

There is no function in RhinoCommon to chamfer two curves. You can make your own by just trimming off the ends and then connecting the two segments with line.

Thanks. I´ve made my own function,