Advertisement
Guest User

Cam Gear shapes for parametric curves Function

a guest
Apr 2nd, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.09 KB | None | 0 0
  1. function A = F(t)
  2. x = (2+cos(3*t)).*cos(2*t);
  3. y = (2+cos(3*t)).*sin(2*t);
  4. A = [x,y];
  5. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement