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.
Jacob_Corder PRO
Reactions
-
Re: drawing a line with Features Script
just use opFitSpline with 2 3d points. it is the fastest at creating a line. (View Post)2 -
Re: How to extrude sketch entity instead of whole sketch in FeatureScript?
//insert this code after your skSolve(bucketSketch) //if you want to extrude surfaces, then use this var largestRegion = sketchEntityQuery(id + "sketch1", EntityType.EDGE, "rectangle1&… (View Post)2 -
Re: evFaceTangentPlane() on a degenerate point?
@Evan_Reese your going to have to show in a model what you are talking about. Do you want the revolved faces axis? if so just call extractDirection which in this case will call evAxis if you need the… (View Post)1 -
Re: How to read in specific variables from a CSV based on user inputs
FeatureScript 2091; import(path : "onshape/std/common.fs", version : "2091.0"); HubData::import(path : "3be489a45fcddbb0b6bf996c", version : "8418c2e85c98dbbfde4767… (View Post)1 -
Re: evaluateSpline: Parameter at index 0 is outside the knot vector
If you want to normalize the not array, i use this export function normalizeKnotArray(knots is array)returns array { var ret = knots; var minKnot = ret[0]; var ct =size(knots); if(minKnot !=0) { //re… (View Post)1