Curve length not quite right

i’m trying to have the notches at the same length 3" from point.

meaning a48-63 at 3" and a104-131 at 3".

i made a104-131 equal to length of a48-63 but it shows it at 2.99961. or is that as close as it will get.

am i doing something wrong?

dain jacket.sm2d (194.7 KB) dain 031224.smis (2.1 KB)

2 Likes

No, you didn’t do anything wrong & it should be showing 3", but it’s only out by 0.00039" which is such a tiny bit, I don’t think it will make any difference.

Another way to do it would be to put in 3" there as well, or to create a Variable with the 3" in it and refer both instances to the Variable.

3 Likes

The app works in “real” numbers and there is always rounding error with the math routines. Especially when dealing with curves. It’s why we have to use fuzzy math routines to compare values, as in many cases it will be close enough, but never equal. Using fuzzy math we can say for ex: if it’s with in .00001 they’re equal.

Obviously:

length a104-131 /= lemgth length a48-63

but:

rint(length a104-131) = rint(length a48-63)

That being said you could use the rint() function to round to the nearest integer… in this case it would be 3.

3 Likes