Welcome to the Onshape forum! Ask questions and join in the discussions about everything Onshape.

First time visiting? Here are some places to start:
  1. Looking for a certain topic? Check out the categories filter or use Search (upper right).
  2. Need support? Ask a question to our Community Support category.
  3. Please submit support tickets for bugs but you can request improvements in the Product Feedback category.
  4. 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.

Options

Overriding 'Expected Query' when running an imported feature within another

Jonathan_HutchinsonJonathan_Hutchinson Member Posts: 64 PRO
I've had a little dabble with importing and running a feature from a different document within another feature's body. What I'm experiencing though is that where the imported function expected queries for vertices etc, I would like to be able to pass in vertices which have, for instance, been calculated/determined in a way that isn't just related to clicked query parameters.

Does that make sense? The bind I'm seeing is that it appears I need to go backwards from a Vertex, to a query (which in this case isn't possible given it's not a vertex that belongs to an entity). My workaround at the moment is to instantiate the thing I calculate so it is an entity, a vertex in this case via opPoint, feed that into the query, and delete it afterwards. Just hunting to see if I'm missing a trick somewhere in the original defining function.
Tagged:

Comments

  • Options
    Evan_ReeseEvan_Reese Member Posts: 2,066 PRO
    I don't totally follow here, but I'd do something similar if I needed a query for something like a point or a plane and only had the vectors.
    Evan Reese / Principal and Industrial Designer with Ovyl
    Website: ovyl.io
  • Options
    chadstoltzfuschadstoltzfus Member, Developers, csevp Posts: 131 PRO
    I've done this before, especially for things like opEnclose, which requires planes as queries. So you'll see something like this whenever I try to use that function
    // Creates planes to use for making an enclosure
            opPlane(context, id + "leftPlane", {
                        "plane" : leftFace
                    });
            opPlane(context, id + "rightPlane", {
                        "plane" : evPlane(context, { "face" : definition.rightReturn })
                    });
            opPlane(context, id + "bottomPlane", {
                        "plane" : bottomFace
                    });
            opPlane(context, id + "topPlane", {
                        "plane" : evPlane(context, { "face" : definition.topFloor })
                    });
            opPlane(context, id + "backPlane", {
                        "plane" : evPlane(context, { "face" : definition.backFace })
                    });
            opPlane(context, id + "frontPlane", {
                        "plane" : evPlane(context, { "face" : definition.frontFace })
                    });
    
            var planes = qUnion([qCreatedBy(id + "leftPlane", EntityType.FACE), qCreatedBy(id + "rightPlane", EntityType.FACE), qCreatedBy(id + "bottomPlane", EntityType.FACE), qCreatedBy(id + "topPlane", EntityType.FACE), qCreatedBy(id + "backPlane", EntityType.FACE), qCreatedBy(id + "frontPlane", EntityType.FACE)]);
    
            opEnclose(context, id + "enclose", {
                        "entities" : planes
                    });

    Applications Developer at Premier Custom Built
    chadstoltzfus@premiercb.com
  • Options
    Evan_ReeseEvan_Reese Member Posts: 2,066 PRO
    oh oh oh! Thread hijack alert, but Chad, I recently learned more about IDs and I think you could set these up in a way that makes your query easier and more update-able. I haven't tested this, but I think this (or something similar) should also work. 

            opPlane(context, id + "plane" + "left", {
                        "plane" : leftFace
                    });
            opPlane(context, id + "plane" + "right", {
    "plane" : evPlane(context, { "face" : definition.rightReturn }) }); opPlane(context, id + "plane" + "bottom", {
    "plane" : bottomFace }); opPlane(context, id + "plane" + "top", {
    "plane" : evPlane(context, { "face" : definition.topFloor }) }); opPlane(context, id + "plane" + "back", {
    "plane" : evPlane(context, { "face" : definition.backFace }) }); opPlane(context, id + "plane" + "front", {
    "plane" : evPlane(context, { "face" : definition.frontFace }) }); var planes = qCreatedBy(id + "plane", EntityType.FACE); opEnclose(context, id + "enclose", { "entities" : planes });

    Evan Reese / Principal and Industrial Designer with Ovyl
    Website: ovyl.io
  • Options
    chadstoltzfuschadstoltzfus Member, Developers, csevp Posts: 131 PRO
    Oh yeah this is older code of mine. I've been messing around with ANY_ID lately and have found some good uses for it, especially in for loops. I didn't know you don't need the ANY_ID if you concatenate a second string through, very slick! 
    Applications Developer at Premier Custom Built
    chadstoltzfus@premiercb.com
  • Options
    Evan_ReeseEvan_Reese Member Posts: 2,066 PRO
    I've not used ANY_ID before. I'll give it a go!
    Evan Reese / Principal and Industrial Designer with Ovyl
    Website: ovyl.io
  • Options
    NeilCookeNeilCooke Moderator, Onshape Employees Posts: 5,401
    Remember that id is an array, not a string. ANY_ID ( = "*" ) is useful if the middle id array element is variable, such as id + ANY_ID + "plane"
    Senior Director, Technical Services, EMEAI
  • Options
    Evan_ReeseEvan_Reese Member Posts: 2,066 PRO
    Thanks, Neil. I'll take any FS education you're willing to dish out!
    Evan Reese / Principal and Industrial Designer with Ovyl
    Website: ovyl.io
  • Options
    Evan_ReeseEvan_Reese Member Posts: 2,066 PRO
    I've not used ANY_ID before. I'll give it a go!
    I should correct this, actually. I did use it in the Grid Extrude feature, but at someone smarter's suggestion, so I don't feel like I've used it, haha.
    Evan Reese / Principal and Industrial Designer with Ovyl
    Website: ovyl.io
Sign In or Register to comment.