brepjs API Reference
    Preparing search index...

    Function filletWithEvolution

    • Apply a fillet (rounded edge) to selected edges, returning both the result shape and the face evolution data.

      Parameters

      • shape: ValidSolid

        The shape to modify.

      • edges: readonly Edge[] | undefined

        Edges to fillet. Pass undefined to fillet all edges.

      • radius: number | [number, number] | ((edge: Edge) => number | [number, number] | null)

        Constant radius, variable radius [r1, r2], or per-edge callback.

      Returns Result<EvolutionResult<ValidSolid>>