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.
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:
Symbol | Name | Description |
---|---|---|
r | Radius | The curvature radius of the circular arc |
ฮธ | Corner angle | The interior angle between the two lines (90ยฐ for right angles) |
c | Chord | Straight-line distance between the two tangent points |
s | Sagitta | Height of the arc (how far the arc "cuts into" the corner) |
L | Arc length | Length along the circular edge |
๐ผ๏ธ Diagram of a Rounded Corner
๐ง Core Formulas
If you know any two of these values (commonly r and ฮธ), you can calculate the rest:
Quantity | Formula (ฮธ in radians) |
---|---|
Arc length | L = r ร ฮธ |
Chord length | c = 2r ร sin(ฮธ / 2) |
Sagitta | s = r ร (1 - cos(ฮธ / 2)) |
Sector area | A_sector = (ฮธ / 2) ร rยฒ |
Triangle area | A_triangle = 0.5 ร rยฒ ร sin(ฮธ) |
Segment area | A_segment = A_sector - A_triangle |
๐ Special Case: 90ยฐ Corner
For a right angle (ฮธ = 90ยฐ = ฯ/2 radians):
Known | Formula | Example (r = 100 mm) |
---|---|---|
Arc length | L = ฯr/2 | 157.08 mm |
Chord length | c = โ2 ร r | 141.42 mm |
Sagitta | s = r(1 - 1/โ2) | 29.29 mm |
Segment area | A_segment = rยฒ(ฯ/4 - 0.5) | 28.54 cmยฒ |
๐ก 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:
- Uses trigonometric formulas to calculate the rest.
- Displays a live SVG diagram of the arc and corner.
- Converts units between mm, cm, inches, or pixels.
- 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
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
Field | Example Use Case |
---|---|
Mechanical Design (CAD) | Define fillets for stress reduction |
CNC & CAM | Compute toolpath offset or cutter radius |
Woodworking / Metal Cutting | Estimate cut depth or material removed |
UI / Web Design | Balance border-radius visually between layers |
Laser Cutting / 3D Printing | Optimize 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 Quantity | Formula to Find Radius | Example |
---|---|---|
Arc Length (L) | r = L / ฮธ_rad | L=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
- Engineering Toolbox - Mechanical Engineering - Comprehensive engineering formulas and calculations
- Autodesk Fusion 360 - Best practices for fillet design in mechanical engineering
- MDN CSS Border-Radius - Web design applications of corner radius