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.
FS non-contiguous points error
graham_lock
Member Posts: 148 PRO
Hi all,
I have an error in this document when I run the loop more than once.
I really have no idea what the error is telling me?
Test document here:
https://cad.onshape.com/documents/26499f352b9456e8f799b46b/w/ad2b1685bcf1c43bea0f8715/e/e0a53d827390e6730aeaadeb
Any help appreciated.
Thank you.
I have an error in this document when I run the loop more than once.
I really have no idea what the error is telling me?
Test document here:
https://cad.onshape.com/documents/26499f352b9456e8f799b46b/w/ad2b1685bcf1c43bea0f8715/e/e0a53d827390e6730aeaadeb
Any help appreciated.
Thank you.
0
Best Answer
-
_anton Member, Onshape Employees Posts: 410Instead of
sectionPlaneId = id + "sectionPlane" + i;
intersectionCurveId = id + "intersectionCurve" + i;
do
sectionPlaneId = id + i + "sectionPlane";
intersectionCurveId = id + i + "intersectionCurve";
0
Answers
sectionPlaneId = id + "sectionPlane" + i;
intersectionCurveId = id + "intersectionCurve" + i;
do
sectionPlaneId = id + i + "sectionPlane";
intersectionCurveId = id + i + "intersectionCurve";
Explanation: https://forum.onshape.com/discussion/comment/66604#Comment_66604