User Profile

Collapse

Profile Sidebar

Collapse
gopal0430
gopal0430
Last Activity: Oct 16 '14, 10:25 AM
Joined: Aug 21 '14
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • gopal0430
    started a topic Draw fractal Fit inside panel using Winform?

    Draw fractal Fit inside panel using Winform?

    Hi I am trying to build a windows application in .net which draw fractal image inside the panel.It take end points of line as starting point of next line.But problem is, diagram is going outside of the panel.How do i fix drawing inside the panel
    Code:
     static int start_x, start_Y;
            static int end_x, end_Y;
            static int my_angle = 0;
            static int my_length = 0;
    
     public void draw_line()
    ...
    See more | Go to post

  • gopal0430
    started a topic how to make diagram fit with in panel?

    how to make diagram fit with in panel?

    hey i am trying to build a windows application in .net,i have to draw factorial image inside the panel



    Code:
         private void Canvas_Paint(object sender, PaintEventArgs e)
                {
                    start_x = Canvas.Width / 2;
                    start_Y = Canvas.Height / 2;
                    for (int i = 0; i < 400; i++)
                        draw_T();
        
                }
    ...
    See more | Go to post
    Last edited by Rabbit; Aug 21 '14, 03:42 PM. Reason: Please use [code] and [/code] tags when posting code or formatted data.
No activity results to display
Show More
Working...