极坐标转笛卡尔坐标转换器
将极坐标 (r, θ) 转换为笛卡尔坐标 x 和 y,支持度数或弧度,显示逐步推导和结果象限。
输入
输出
| 属性 | 值 |
|---|---|
| No data yet | |
使用此工具的更多方式
REST API
curl -X POST https://api.iotools.cloud/v1/tool/polar-to-cartesian-converter \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"radius": "5",
"angle": "45",
"angleUnit": "degrees",
"precision": "4"
}'替换成您账户中的密钥。工具的字段即为请求体——没有额外包装。
让 AI 代理执行
Use the IOTools `polar-to-cartesian-converter` tool (Polar to Cartesian Converter) on this input:
YOUR_INPUT_HERE将此粘贴给任何已连接 IOTools MCP 服务器的代理,再加上您的输入内容。
嵌入式小组件
<iframe
src="https://iotools.cloud/embed/polar-to-cartesian-converter/"
width="100%" height="520" frameborder="0" scrolling="no" loading="lazy"
title="极坐标转笛卡尔坐标转换器 — iotools.cloud"
sandbox="allow-scripts allow-forms allow-same-origin allow-downloads allow-popups allow-popups-to-escape-sandbox"
allow="clipboard-write"
style="width:100%;border:1px solid #e5e7eb;border-radius:12px;overflow:hidden"></iframe>
<script src="https://iotools.cloud/embed.js" async></script>把它放到您自己的页面上——免费,无需密钥,只需保留一个反向链接。
| 每次 API/MCP 调用费用 | 5 积分起 |
|---|---|
| 需要更多积分? | 查看定价 |
也可通过
使用指南
The Polar to Cartesian Converter turns polar coordinates (r, θ) — a distance from the origin and an angle — into Cartesian coordinates (x, y), the more familiar "over and up" pair used for graphing and most calculations. It works in either degrees or radians, and shows the exact formula substitution used to get the answer.
It's built for trigonometry and precalculus students converting homework problems, and anyone working with polar-form data (robotics headings, radar/sonar bearings, complex numbers in polar form) who needs the equivalent x/y point.
How to use it
- Enter r, the radius (distance from the origin) — this can be negative, which points in the opposite direction of θ.
- Enter θ, the angle, and choose whether it's in degrees or radians.
- Pick how many decimal places to round the result to.
- Read x and y for the Cartesian coordinates, or the Result table for those plus the radius/angle echoed back in both units, the angle normalized to 0–360°, and which quadrant (or axis) the point falls on.
- Step-by-Step Derivation shows the formula substitution.
Results update automatically as you type. For example, r = 5, θ = 45° converts to x ≈ 3.5355, y ≈ 3.5355 (Quadrant I).
What is the conversion formula?
Given a point in polar form (r, θ), the Cartesian coordinates are:
x = r · cos(θ)
y = r · sin(θ)This follows directly from the definition of sine and cosine on a circle of radius r: θ is measured counterclockwise from the positive x-axis, so r·cos(θ) is the horizontal component and r·sin(θ) is the vertical component of the point.
What does a negative radius mean?
A negative r doesn't move the calculation off the circle — it points the distance in the opposite direction from θ, which is mathematically equivalent to adding 180° to the angle. For example, (r, θ) = (-4, -30°) lands in Quadrant II, the same point you'd get from (4, 150°).
Degrees or radians?
Pick whichever your source data uses. Radians are the standard unit in most math and physics formulas (a full circle is 2π radians); degrees are more common in everyday and engineering contexts (a full circle is 360°). The calculator's θ (degrees) and θ (radians) result rows show the angle converted to both, regardless of which one you entered.
For the reverse direction — Cartesian (x, y) to polar (r, θ) — or for working with polar-form complex numbers directly, see the Complex Numbers Calculator.
Privacy
This calculator runs entirely in your browser. Your coordinates are never uploaded, logged, or stored — the computation happens locally on your device.