algorithms

What are the algorithms used to draw rectangle

Comments

  • : What are the algorithms used to draw rectangle
    :
    [color=Blue]First, you need the algorithm to draw vertical/horizontal lines. Then simply draw the sides of a rectangle.[/color]
  • : What are the algorithms used to draw rectangle

    Depends on the language.

    I know the ActionScript one?

    [code]_root.createEmptyMovieClip ("rectangle", 1);
    with (_root.rectangle){
    beginFill (0x0000FF, 50);
    lineStyle (5, 0xFF00FF, 100);
    moveTo (200, 200);
    lineTo (300, 200);
    lineTo (300, 300);
    lineTo (200, 300);
    lineTo (200, 200);
    endFill();
    }[/code]

    Each language is different.
    function Me() {
    str1 = "ActionScript"; str2 = "PHP";
    trace(str1.concat(str2)); }
    Output: Skills.
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Categories