Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7080267
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:46:27+00:00 2026-05-28T06:46:27+00:00

I cannot get this koch snowflake drawing working recursively. Recursive method public void koch(int

  • 0

I cannot get this koch snowflake drawing working recursively.

Recursive method

 public void koch(int n, double size) {
    if (n == 0) {
        t.forward(size);
    } else {

        koch(n - 1, size / 3);   // line 1
        stdTort.rotate(60);            // line 2
        koch(n - 1, size/3);     // line 3
        stdTort.rotate(120);           // line 4
        koch(n - 1, size/3);     // line 5
        stdTort.rotate(60);            // line 6
        koch(n - 1, size/3);     // line 7
    }
}

Any help would be appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:46:27+00:00Added an answer on May 28, 2026 at 6:46 am

    All of your angles are wrong, because they are rotating clockwise where you are expecting them to go anti-clockwise. In order to get the angle shown in figure 2 you actually need to rotate 120, not 60. Then to get your final line you want to rotate -60, not 60.

        koch(n - 1, size / 3);   // line 1
        t.rotate(120);            // line 2
        koch(n - 1, size/3);     // line 3
        t.rotate(120);           // line 4
        koch(n - 1, size/3);     // line 5
        t.rotate(-60);            // line 6
        koch(n - 1, size/3);     // line 7
    

    Thinking about this, I think the reason you are confused is because the rotation doesn’t seem to be intuitive. If your turtle is walking forward to do the first line, then you would expect a rotation to be either clockwise or anti-clockwise from that direction. But it seems your rotation all starts from the opposite direction.

    Expected:

            /
    -60 = --
    
    +60 = --
            \
    

    Actual:

    -60 = --
           /
    
           \
    +60 = --
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I cannot get this working correctly, actually at all. What I have so far
I cannot get this simple append working. I'm trying to add two break tags
I cannot get this method to return YES: - (BOOL) writeToPasteBoard:(NSString *)stringToWrite { return
I just cannot get this to work, would appreciate if someone can help. So
Ok, I cannot get this. I've looked at it and I don't see why
Ok, I've tried about near everything and I cannot get this to work. I
I get this message: Cannot find the X.509 certificate using the following search criteria:
I get this warning from GCC: warning: cannot pass objects of non-POD type 'class
I get this: Warning: session_start(): Cannot send session cookie - headers already sent by
I cannot figure out why I get this error during check-in. I checked in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.