Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page.
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.