Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.
First time visiting? Here are some places to start:- Looking for a certain topic? Check out the categories filter or use Search (upper right).
- Need support? Ask a question to our Community Support category.
- Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
- Be respectful, on topic and if you see a problem, Flag it.
If you would like to contact our Community Manager personally, feel free to send a private message or an email.
Alex_Kempen EDU
Reactions
-
Re: ARRAY VARIABLES
You're currently making an array containing the variable partCount. Accordingly, flatSizes always contains a single element, so it always has a size of 1. To make flatSizes properly, use makeArray in… (View Post)1 -
Re: Pull selections from a previous feature into new feature
If it’s your own sheet metal feature, you can set an attribute with either the entire feature definition or just the value of the enum (if selected). You can then check for that attribute with the fi… (View Post)1 -
Re: Adding ease of use abilities to the std. sheet metal model feature
Okay, there's a few things to unpack. There is a little blurb on CSV imports buried in the Onshape documentation here. Assuming you've found that already, I think your issue is that you've consistent… (View Post)1 -
Re: how to calculate a second radius
Units. When adding or subtracting, the units on both sides of the equation must either both be defined or both be undefined. Thus, 2 in + 3 ft works, as does 2 + 3, but 2 in + 5 does not because the … (View Post)1 -
Re: Help with redundant code?
If you wanted, you can do even better by combining if statement conditions together and setting a variable first to avoid redundant characters. Setting a variable is especially useful when nesting ma… (View Post)2