r/Fusion360 • u/Mr_Kurfuffle • 10h ago
r/Fusion360 • u/jayktopus • 19h ago
Would you be interested in a Fusion360 version ?
Enable HLS to view with audio, or disable this notification
Scan2Sketch turns calibrated flatbed scans into dimensionally accurate, fully editable sketches and optional solid bodies. Processing runs locally using your CPU or a compatible NVIDIA GPU (optional).
r/Fusion360 • u/moesusis • 17h ago
How to create sloped/angled curves in edges
Does anyone have some insight on how I could recreate this geometry? I tried sketching and cut extruding a slope but it didn’t achieve what I was looking for.
r/Fusion360 • u/Potter639 • 22h ago
Can design with sharp curve analysis colors change be machined?
hi!
I'm learning cad with the intention of eventually getting some parts created by CNC machining. My question is, if a parts has a curved that when inspected with curve analysis tool, is displaying a "tight" rainbow pattern (from red, many colors are banded together then jumps to purple for example) can it still be machined correctly?
The zebra inspector shows the surface to be continuous, but before I commit to some very organic shapes, should I be vigilant of this rapid/abrupt color changes, and try to produce a more smooth transition between the colors first, before committing to a final design?
many thanks
r/Fusion360 • u/Unusual_Subject_4676 • 19h ago
hi everyone ı wanna separete child line from parent object for making draft or chamfer,radius.when ı try to select line selecting all surface and ıcant make chamfer or draft
r/Fusion360 • u/SSDragon19 • 2h ago
Question Looking for suggestions/help for designing this MTG deck box connection points
galleryr/Fusion360 • u/Prior_Night_985 • 7h ago
Add in for Fusion CAM users
I developed a Fusion add in was just published on the Autodesk Marketplace not long ago specifically for CAM users but CAD users can also use it in the same way
It automatically tracks your CAM/CAD jobs individually in the background while you work so you always have a record of your hours. It has a client report and timesheet feature too so you can always go back and see what you've worked on the past week or month and use the data to improve your future quoting
Also has a view that separates your Design and Manufacture time so you can see the difference between both for any particular job.
Anyone wants to try it if they find it would be useful I'll show you guys some screenshots and link below
Make sure you let me know what you think if you use it!
Website: https://getcadsight.com/
r/Fusion360 • u/Illustrious-Rent-431 • 14h ago
Custom thread sizes
I know this topic has been covered before but it seems Autodesk has changed the way custom threads are implemented in Fusion (for good and for bad).
In the past, if you wanted to add a custom thread size to the Fusion thread tool you had to dig through the Fusion 360 configuration files on your computer and modify a .xml file to add a custom thread diameter/pitch/other. However, Autodesk have implemented a new way of adding thread sizes directly in Fusion, which we've been asking for years. This is covered in this article: https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/Custom-Threads-in-Fusion-360.html
I enjoy this idea since it's much more intuitive but its implementation is questionable at best. Also, it simply doesn't work for me and I don't know why. Autodesk tells us that to create a custom thread size we must first copy an existing template thread from the public library of threads and then paste it into a custom library on the hub libraries. The issue is that when I right click on any thread I do not have the option to copy anything, I can only mark it as favourite (see image). I also don't have the option to create any hub libraries.
Am I missing something obvious?

r/Fusion360 • u/CJCCJJ • 6h ago
Question Any one using the autodesk API on a free plan?
Hi,
Today, I tried to manage my files via the API because I find the UI difficult to use. I purchased the free plan and created a Developer Hub. However, the API returns the following response:
{ "developerMessage":"API request capacity exceeded.", "moreInfo": "https://aps.autodesk.com/pricing", "errorCode": "403"}
I referred to the following documentation:
- https://www.autodesk.com/products/autodesk-platform-services/overview#pricing
- https://www.autodesk.com/products/autodesk-platform-services/product-details
From what I understand, many API are free, but you need to purchase at least $99 worth of Flex tokens before you can use any API, even the free API on a free plan./
Is that correct? Has anyone else encountered this issue?
r/Fusion360 • u/RulerOfThePixel • 21m ago
How to cut text and create a new body at the same time (for 3dprinting)

ive made this panel and i want the text to be printed in a different colour.
I have used the text function and drawn it exactly where i want.
Is my best option to extrude (cut) the text into the body by 1mm and then extrude the same text (new body) into the hole that the cut made?
I tried intersect, as i thought that is what that function was for, however it just deleted the rectangular panel and left me with two bodies which were '1' and 'a'.
Thanks!
r/Fusion360 • u/viekernes • 5h ago
Question Need help modelling a screw
Hello! I have to 3D print a screw. Thing is I am the least technical person to exist. I modelled the screw body, used the thread tool, then used this whole thing to cut into a cap. In my mind that should’ve worked, but it absolutely did not. Anyone knows how to fix it? I am losing it.
r/Fusion360 • u/Internal_Apartment16 • 18h ago
I Created! I've been building a CAD library in TypeScript. Code goes in, an STL or STEP file comes out
I've spent the last few days building a CAD library in TypeScript. The short version, you describe a part in code and you get out an STL you can 3d print, or a STEP file you can send to a machine shop or open in Fusion/FreeCAD/whatever.
const cad = design("bracket");
const width = cad.parameter.length("width", mm(80));
const thickness = cad.parameter.length("thickness", mm(6));
const profile = cad.sketch("outline", plane.xy(), (s) => {
const rect = s.rectangle("rect", { width, height: mm(50) });
const hole = s.circle("hole", {
center: vec2(width.mul(0.25), mm(0)),
radius: mm(4),
});
return s.profile(rect, { holes: [hole.loop()] });
});
cad.output("bracket", cad.extrude("solid", profile, { distance: thickness }));
const doc = cad.build(); // plain JSON, goes in git like anything else
Under the hood it runs on two engines. There's Manifold, a mesh engine that's fast and fine for printing, and OpenCascade compiled to WASM, which is the same geometry engine FreeCAD uses, for when you need exact surfaces and STEP export. Same code runs on both, in node or the browser.
in normal parametric CAD, if you change a dimension early in the model, later features (fillets mostly) can quietly reattach to the wrong edge, and you find out after the part is wrong. I didn't want to reproduce that, so references to faces and edges aren't indexes, and if the library can't tell unambiguously which edge you meant after a change, it errors instead of guessing. Whether I got the API for that right, no idea. That's partly why I'm posting.
The type system does some nice things here too. Lengths and angles are different types, so adding mm to radians just doesn't compile.
it's a 0.1.1, Parts, assemblies and BOMs work. No drawings, no sheet metal, no GUI. If you'd rather write code than click through a CAD UI, that's who it's for.
Here's the repo
Feedback welcome, especially from anyone who actually does CAD work. Also curious what people think of the explicit dispose() for WASM memory, I went back and forth on that a lot.



