Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily.
X
Hello Everyone, I have a text file where in i can find the points for the involute profile. From this how can i create an involute profile in a model . Please do suggest some methods if somebody have already working on this process. Have a nice day. Regards, Kathir.
You can create an involute profile(datum curve) by creating a curve from equation. r = base radius ang = t * 90 s = length of curve t = system parameter that varies from 0-1 s = (PI * r * t)/2 xc = r * cos(ang) yc = r * sin(ang) x = xc + (s * sin(ang)) y = yc - (s * cos(ang)) z = 0 If you know the base radius use it in this equation and you will get a curve.