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.
kevin_o_toole_1 
Reactions
-
Re: Loft sketches using FeatureScript
profileSubqueries should be an array of queries (one for each profile), not a single query for everything. So, for instance, in your loop you could do: sketches = append(sketches, qCreatedBy(id + i))… (View Post)1 -
Re: Featurescript: Can't get qEdgeAdjacent to work?
Probably a better name for qEdgeAdjacent() would be qSharesEdge(), and qVertexAdjacent() should be qSharesVertex(). For example: ebug(context, qEdgeAdjacent(definition.edge1, EntityType.FACE)); debug… (View Post)1 -
Re: Organic Surface?
In the example you gave, the sculpt fails because it didn't preserve the edge you split the face along. The split face was on a diagonal line, and, naturally, what you wanted the tool to do was keep … (View Post)1 -
Re: Organic Surface?
Here's a feature that provides manipulators for modifying a surface. It simply performs a loft and a replace face with a nicer interface. https://cad.onshape.com/documents/2c277b8c65f802c616cd16d4/v/… (View Post)1 -
Re: Featurescript: extruding between points.
opFitSpline, when given two points, will create a perfectly straight line between those points (it's a line at every level: the GeometryType, the internal representation, the tessellation, etc.). Tha… (View Post)1