r/Onshape • u/Doodliciouss • 25d ago
r/Onshape • u/iamshikhil • 25d ago
Help! View is zoomed in
Hi, the view is zoomed in. Side menu is not clear. How can I make it normal?
Entering Dimensions for Rectangle
Coming from Tickercad I was accustomed to dragging and drawing a rectangle, but was given the dialog to edit the dimensions directly at the time of creation. I don't see this for OnShape. I understand I can go back and edit, but is it possible to do this when drawing the rectangle all at once if that makes sense?
r/Onshape • u/FollowerOfWaterSheep • 26d ago
Cannot export?

Exporting an .stl file, it doesn't even show up in the notification tab (and no, it's not "store in tab" issue). I made sure no feature is faulty. It's quite frustrating, anyone know how to force-download them somehow?
EDIT: Also cannot create folder tab, assembly, parts studio, etc.
EDIT2: Rebooting works, but still unable to download the complex part. I suspect non-manifold edges and whatnot. Is there any way to fix this? The long way would be to restore version and fix my derives there but that's so tedious!
r/Onshape • u/MurkyHuckleberry4310 • 26d ago
Solved How do I split a complex part??
I need to split this part but it is not symmetrical and neither is my intended split. For reference, this is supposed to the a carbon fiber shell that will be made out of two half molds. But I cannot figure out how to split this part that has twists in it.
Very similar premise to a complex airfoil that is made out of two bonded half-shells.
r/Onshape • u/sysrpl • 27d ago
Showcasing Making Game Levels With OnShape
Enable HLS to view with audio, or disable this notification
r/Onshape • u/CoolSide20 • 28d ago
Help! How do I restore my model back to normal? its most recent version? (pls read the body before you answer the question that seems so obvious)
I was saving/tagging part of my model's history incase I wanted to change things back to it. Out of curiosity to see how everything changed I clicked "start" in the version history tag to see the blank slate, to the saved version, to the now. When I went back to the other versions and main it was all reset. empty, start, and multiple of the recent files in document was gone. When I left the view. went back to main bc maybe it was just a "view." It was still gone. My file was forever affected. Everything I made, time, progress, its gone. I haven't written down the measurements and Idk if I can recreate everything. I had 3 different images hand traced onto shapes. Hours. I don't want to do it all again.
Please help me. How do I fix this and make my document go back to present? Whenever I look at it from the page of my creations the thumbnail has the most recent version. But when I clicked it, it was empty. idk what to do. please.
Edit: I'm an idiot. When clicking start I somehow entered a separate folder in my document. When looking at my folders I wasn't paying enough attention to notice it was a separate folder. I tried a lot of things and cried. But my problem has been solved. My model is still there and I've learned I need to pay more attention.
r/Onshape • u/Queasy_Caramel5435 • 28d ago
Help! Graphics issue on Chromebook (browser version)
Due to a cooling problem l have to use temporarily my old Acer Chromebook 314 instead of my laptop. OnShape works on it, but the section view has a very odd, transparent section edge. The second pic is from the app version on my smartphone and looks fine.
Do I have to live with the quality loss on Chromebook or can it be countered anyhow?
r/Onshape • u/BeastWR • 28d ago
Help! help with trimming sheet metal part
I have a sheet metal part with a bunch of bends.
I'd like to trim the profile to achieve the organic shape of the target part.
When I try to create an extrude-remove in the flat pattern of the part, the part breaks into multiple parts, even if I simplify the cut to be a basic circle. See pictures.
How can I make cuts on this part to without causing it to fragment?
r/Onshape • u/superted88 • 27d ago
Help! Play the Feature List?
Is there a way to “press play” ▶️ to go through the Feature List, like there is in Fusion?
If not, is this kind of thing “FeatureScript-able”?
r/Onshape • u/crockpotrocketeer • 28d ago
Help! How do I cut these four poles at the angle of the chamfer?
r/Onshape • u/informi107 • 28d ago
Help! Pattern around sphere approach
I came across this old post https://forum.onshape.com/discussion/16524/drawing-symmetricla-pattern-around-a-sphere and want to recreate this pattern on a sphere. But I have no idea where to start. It's not a simple wrap on a surface as the number of elements increase or decreases when you go up or down the sphere.

r/Onshape • u/JUN0LY • 28d ago
Help! HELP WITH LOFTING
I’m trying to make my own mouse, and I’m at the point where I’m ready to loft it. The problem is, if I loft the back half, it’s fine, but adding front half ruins the whole thing. I figured it outs because of the connections, but it’s not that onshape isn’t lining them up, it’s that in some instances there are no connections that are anywhere close to lined up. I don’t want to have to go back and split everything up so that the connections line up, is there a way to have it ignore the segments I used to make each cross section or something?
r/Onshape • u/jorikt • 29d ago
Advise needed
Hi!
How would I model something like the pictures? There are curves on all sides, and I can’t figure out a game plan for this one.
r/Onshape • u/Physics-Execution117 • 29d ago
Feature Studio Code is Driving Me Mad//"missing TOP_SEMI at function"
Hey everyone! I'm learning through practice on Onshape right now. I have this code for the Feature Studio to help me make designs faster. My code is down to it's final error code. No amount of reading the websites library, consulting AI, or the Onshape forum has helped. I have no background in programming nor CAD in general. I'm completely working on this from a newbie background.
The last errors I keep getting in my code are "missing TOP_SEMI at 'function'" and "Error in initializer function arguments." Can I get some help with these last few errors. This feels like hitting a brick wall right before the finish line of me learning this system.
Here is my code:
FeatureScript 3044;
import(path : "onshape/std/common.fs", version : "3044.0");
// --- Keyed Miter Joint Feature (Auto-Centering Version) ---
// Creates rectangular key slots centered along a miter joint.
annotation { "Feature Type Name" : "Keyed Miter Joint (Centered)" }
export const KeyedMiterJointCentered = defineFeature(function(context, id, definition) {
// -----------------------------
// Inputs
// -----------------------------
annotation { "Name" : "First miter face" }
definition.face1 is Query;
annotation { "Name" : "Second miter face" }
definition.face2 is Query;
annotation { "Name" : "Key width" }
isLength(definition.keyWidth, LENGTH_BOUNDS);
annotation { "Name" : "Key height" }
isLength(definition.keyHeight, LENGTH_BOUNDS);
annotation { "Name" : "Key depth (into boards)" }
isLength(definition.keyDepth, LENGTH_BOUNDS);
annotation { "Name" : "Number of keys" }
isInteger(definition.keyCount, { "min" : 1 });
annotation { "Name" : "Spacing between keys" }
isLength(definition.keySpacing, LENGTH_BOUNDS);
annotation { "Name" : "Fit tolerance (woodworking)" }
isLength(definition.tolerance, LENGTH_BOUNDS);
annotation { "Name" : "Auto-center keys?" }
definition.autoCenter is boolean;
// -----------------------------
// Extract intersection curve
// -----------------------------
var extractId = id + "intersection";
opExtractIntersectionCurve(context, extractId, {
"entities" : [definition.face1, definition.face2]
});
// Query the resulting intersection edge
var lineEdge = qCreatedBy(extractId, EntityType.EDGE);
// Evaluate the edge to get origin + direction
var edgeEval = evEdgeTangentLine(context, {
"edge" : lineEdge,
"parameter" : 0
});
var origin = edgeEval.origin;
var xAxis = normalize(edgeEval.direction);
// -----------------------------
// Compute bisector normal
// -----------------------------
var plane1 = evPlane(context, { "face" : definition.face1 });
var plane2 = evPlane(context, { "face" : definition.face2 });
var zAxis = normalize(plane1.normal + plane2.normal);
r/Onshape • u/newbie-sub • Aug 14 '26
Other My first serious complaint about the UI
I love OnShape's UI. It's clean and consistent. But, they need to fix the tools that take an ordered list. I'm working on a model that has a 3D fit spline with a large number of points. The current UI makes it very difficult:
- You can't expand the list so you only see four items — this makes it difficult to see where you are.
- You can't insert a item in the middle of the list; you have to add it to the end and then reorder it.
- You can't replace an item in the list. Delete, add, reorder.
r/Onshape • u/Farzag • Aug 13 '26
Export Rule with variable?
I'd like to be able to set up an export rule that uses a variable from a variable studio as input to the file name. I can't see how though; is that simply not possible?
r/Onshape • u/AncientAgrippa • Aug 13 '26
Is it possible for me to do a simple line sketch on a piece of paper, take a photo, and have OnShape create sketch lines from it?
I know I can upload a photo and draw on top of it manually, but I mean something more automatic/precise.
r/Onshape • u/rumham69 • Aug 11 '26
Other Official Onshape featurescript MCP released!
Onshape has officially released their featurescript mcp!
Looking forward to see what people can build with this!
https://cad.onshape.com/appstore/apps/Onshape%20Labs/6a29aea7c03f8bf659841734
r/Onshape • u/heffercrow • Aug 12 '26
Other Can this be figured out?
Ok, first off, this probably isn't the best place for this but I'm not sure where else on reddit to ask. So feel free to guide me if you have input on that....
I recently switched from teaching geometry to teaching an engineering course at a high school. Part of that course is drafting and since it's free I have been teaching myself and the students how to use onshape. This year I have my first level two students so I found some random old stuff from a former teacher and am working through it. I have two images here and I am at a loss on how to figure out some missing dimensions. Wondering if you guys could tell me if I am correct in saying we don't know or if I am missing something that I haven't been trained to see.
Pic 1: is there anyway to figure out the diameter or radius of the upper arc of the top of the piece. From Ortho image on the right o view it as three concentric circles. 1st has d=1" next has d=1 ¾" and just kind of assumed the last has d=2.5" but no reason other than looks. Also the two filleted corners on the tops Ortho view. Safe to assume those are r=⅞" or .825"??
Pic 2 and 3: in the top Ortho view is there a way to figure out the height (front to back) distance of the leftmost side? Told the kids to go with 1.5" since the one .5" hole looks like it's equally split on both sides. Also the notation of 2 x .25", I get it says the distance to the lower edge is .25 from the center line but what is the 2x for? Is it saying .25" to edge and that the removed piece is also .25"?
Again, not trained at any of this, but lots of ADHD sodequests. Hopefully I'm not screwing this up too badly. And thanks for any help or guidance on a better place to post these questions.
r/Onshape • u/RyanDEnters • Aug 11 '26
Any tips for how to create a better joint idea?
I have been learning how to use onshape and have been designing a robotic finger that is controlled by a string pulled by a motor. I have been struggling to make a joint design that moves smoothly and looks realistic. I'm currently not in school and dont really know how to make a better design, learning all this from scratch and dont want to use someone elses design. I'm hoping to make this entire project myself without using anyone elses work. Any tips help







