Radius Corner Calculator - Find Fillet Radius, Arc Length, Chord & Sagitta Easily

Free online radius corner (fillet) calculator. Enter radius, chord, arc length, or sagitta to compute all corner geometry values. Includes diagrams, formulas, and SVG export for CAD, CNC, or UI design.

6 min read
geometrycalculatorengineeringdesignCADCNC

When designing or machining parts, rounding a sharp corner is one of the most common operations โ€” whether it's a metal part in CAD, a wooden panel, or a UI element with a smooth border.

The Radius Corner Calculator helps you find the missing geometry (radius, arc length, chord, sagitta, and area) for rounded corners quickly and visually.


๐Ÿ” What Is a Radius Corner (Fillet)?

A radius corner, or fillet, replaces a sharp corner with a circular arc of a certain radius r.

For example, imagine a 90ยฐ right-angle corner โ€” if you "cut" the corner using a circle of radius 20 mm, you create a smooth transition between the two edges.

Why it matters:

  • In CAD & CAM, you must know the radius to create a precise toolpath.
  • In woodworking or laser cutting, radius ensures parts fit perfectly when assembled.
  • In UI or web design, you may want visually balanced corner radii (border-radius).

๐Ÿ“ Geometry of a Rounded Corner

A rounded corner can be fully described by five main geometric quantities:

SymbolNameDescription
rRadiusThe curvature radius of the circular arc
ฮธCorner angleThe interior angle between the two lines (90ยฐ for right angles)
cChordStraight-line distance between the two tangent points
sSagittaHeight of the arc (how far the arc "cuts into" the corner)
LArc lengthLength along the circular edge

๐Ÿ–ผ๏ธ Diagram of a Rounded Corner

Rounded Corner Geometry Diagram


๐Ÿง  Core Formulas

If you know any two of these values (commonly r and ฮธ), you can calculate the rest:

QuantityFormula (ฮธ in radians)
Arc lengthL = r ร— ฮธ
Chord lengthc = 2r ร— sin(ฮธ / 2)
Sagittas = r ร— (1 - cos(ฮธ / 2))
Sector areaA_sector = (ฮธ / 2) ร— rยฒ
Triangle areaA_triangle = 0.5 ร— rยฒ ร— sin(ฮธ)
Segment areaA_segment = A_sector - A_triangle

๐Ÿ‘‰ Special Case: 90ยฐ Corner

For a right angle (ฮธ = 90ยฐ = ฯ€/2 radians):

KnownFormulaExample (r = 100 mm)
Arc lengthL = ฯ€r/2157.08 mm
Chord lengthc = โˆš2 ร— r141.42 mm
Sagittas = r(1 - 1/โˆš2)29.29 mm
Segment areaA_segment = rยฒ(ฯ€/4 - 0.5)28.54 cmยฒ

90ยฐ Right Angle Corner Example


๐Ÿ’ก How the Radius Corner Calculator Works

The calculator lets you choose an input mode, such as:

  • Known radius โ†’ find all other values
  • Known chord or arc length โ†’ compute radius and others
  • Known sagitta (drop height) โ†’ solve for radius
  • Known corner angle ฮธ (for non-right angles, e.g., 60ยฐ or 120ยฐ)

The tool then:

  1. Uses trigonometric formulas to calculate the rest.
  2. Displays a live SVG diagram of the arc and corner.
  3. Converts units between mm, cm, inches, or pixels.
  4. Allows exporting the diagram as an SVG file.

๐Ÿงฉ Real-Life Examples

Example 1 โ€“ From Sagitta to Radius

You measured a rounded corner where the sagitta is 5 mm, and the corner is 90ยฐ.

Formula: r = s / (1 - 1/โˆš2) โ†’ r โ‰ˆ 5 / (1 - 0.7071) = 17.07 mm

So the corner's radius is โ‰ˆ17 mm.


Example 2 โ€“ From Chord to Arc Length

A fillet has a chord c = 40 mm and the angle ฮธ = 60ยฐ.

Radius: r = c / (2 sin(ฮธ/2)) = 40 / (2 ร— sin(30ยฐ)) = 40 mm Arc length: L = r ร— ฮธ_rad = 40 ร— (ฯ€/3) โ‰ˆ 41.89 mm

60ยฐ Fillet Example


Example 3 โ€“ Compare Flat vs Rounded Corner Area

If you replace a 90ยฐ square corner with a rounded one (r = 50 mm):

  • Original square area: 50ยฒ = 2500 mmยฒ
  • Removed segment area: A_segment = rยฒ(ฯ€/4 - 0.5) = 50ยฒ ร— 0.2854 = 713.5 mmยฒ

So you remove ~28% of the corner area โ€” useful for material estimation in cutting or CNC.


โš™๏ธ Applications

FieldExample Use Case
Mechanical Design (CAD)Define fillets for stress reduction
CNC & CAMCompute toolpath offset or cutter radius
Woodworking / Metal CuttingEstimate cut depth or material removed
UI / Web DesignBalance border-radius visually between layers
Laser Cutting / 3D PrintingOptimize corner radius for fitting parts

๐ŸŒ Try It Online

You can use the interactive calculator at:

๐Ÿ‘‰ Radius Corner Calculator โ€“ freecalculators.app/math/radius-corner-calculator

Simply input your known values, pick your units, and visualize the result instantly.


๐Ÿงพ Frequently Asked Questions

โ“ How do I calculate the corner radius from chord and sagitta?

Use the relation:

r = s/(1 - cos(ฮธ/2)) or r = cยฒ/(8s) + s/2

โ“ What's the difference between a fillet and a chamfer?

A fillet is curved (defined by radius), while a chamfer is a straight bevel (defined by length or angle).

โ“ How to calculate arc length from radius and angle?

Simple:

L = r ร— ฮธ_rad

For 90ยฐ, L = ฯ€r/2.

โ“ Can I use pixels as units?

Yes! Designers can use px to find visually consistent border-radius values for UI components.


๐Ÿงฎ Summary

Known QuantityFormula to Find RadiusExample
Arc Length (L)r = L / ฮธ_radL=157.08 mm โ†’ r=100 mm
Chord (c)r = c / (2 sin(ฮธ/2))c=141.4 mm โ†’ r=100 mm
Sagitta (s)r = s / (1 - cos(ฮธ/2))s=29.29 mm โ†’ r=100 mm

โœ… Conclusion

The Radius Corner Calculator is a practical tool for anyone dealing with curved geometry โ€” from CNC machinists to web designers.

It saves time, avoids manual trigonometry errors, and provides instant visualization of your fillet geometry.

๐ŸŽฏ Whether you're cutting metal, designing furniture, or adjusting CSS corners, this calculator gives you precise, visual, and unit-consistent results โ€” all in one place.


References