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.
Select Face Problem
Hi,
I'm having problems selecting a face in FS but I cannot see why.
I have a simple part where the top and bottom faces are selected via the feature UI:
The bottom face selects absolutely fine and is used in the project for splitting geometry - no issues.
The top face doesn't select correctly from my FS, as can be seen by the patches of debug green, and doesn't work as a splitting face, but if I come out of the feature and select the face manually it looks fine:
precondition
{
annotation { "Name" : "Select Side Face", "Filter" : (EntityType.FACE && ConstructionObject.NO && SketchObject.NO), "MaxNumberOfPicks" : 1 }
definition.sideFace is Query;
annotation { "Name" : "Select Top Face", "Filter" : (EntityType.FACE && ConstructionObject.NO && SketchObject.NO), "MaxNumberOfPicks" : 1 }
definition.topFace is Query;
annotation { "Name" : "Select Bottom Face", "Filter" : (EntityType.FACE && ConstructionObject.NO && SketchObject.NO), "MaxNumberOfPicks" : 1 }
definition.bottomFace is Query;
annotation { "Name" : "Thickness" }
isLength(definition.thickness, LENGTH_BOUNDS);
}
Any help appreciated.
Thank you.