Clear Filters
Clear Filters

Using multiple functions in combination

1 view (last 30 days)
edit

Accepted Answer

dpb
dpb on 20 Oct 2015
Looks to me like it would just be
ring(t,nstars,ringradius,npoints,R,r)
if you remove the lines within ring that redefine the input arguments ringradius and nstars (and any others I overlooked). star gets called within ring w/o any other effort required other than either being visible in MATLABPATH or an internal function within ring.m
function turtle=ring(t,nstars,ringradius,npoints,R,r)
t2=Turtle();
turnAngle=0;
for k=1:nstars
...
  2 Comments
James Connor
James Connor on 20 Oct 2015
I think I made an error on my code, on the ring function when I try to run it when it gets to the star part of of the code it just draws the star normally like it was the star() function and ignores the ring() parts
dpb
dpb on 20 Oct 2015
Since we can't run your code a little tough to tell but...I wonder if there's an issue w/ Turtle in some context presumed to be shared somehow that isn't? Since we have no klew what's in there, it's just a guessing game...

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!