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.
Problems with skArc
sören_svensson
Member Posts: 21 ✭✭
Hi,
I'm creating some corners with skArc but some are ending up inside-out!
I'm using the getArcMidPoint function posted here earlier.
All the small arcs in the picture below should be "outies" and the large center one "innie".
Here's the code for the lower left one (ll and ur are vectors)
I'm creating some corners with skArc but some are ending up inside-out!
I'm using the getArcMidPoint function posted here earlier.
All the small arcs in the picture below should be "outies" and the large center one "innie".
Here's the code for the lower left one (ll and ur are vectors)
start = ll + vector(0 * millimeter, radius);
end = ll + vector(radius, 0 * millimeter);
mid = getArcMidpoint(ll + vector(radius, radius), start, end);
skArc(sketch1, "arc2", {
"start" : start,
"mid" : mid,
"end" : end
}):
and the top right
and the top right
start = ur + vector(-radius, 0 * millimeter);
end = ur + vector(0 * millimeter, -radius);
mid = getArcMidpoint(ur + vector(-radius, -radius), start, end);
skArc(sketch1, "arc8", {
"start" : start,
"mid" : mid,
"end" : end
});
Anyone have any idea why and how to control it:
Regards
Soren
Anyone have any idea why and how to control it:
Regards
Soren
Tagged:
0
Comments
I should have thought about that