Page 25 of 29 FirstFirst ... 15212223242526272829 LastLast
Results 241 to 250 of 283

Thread: LaserBoy 09-01-2008 !!!

  1. #241
    Join Date
    Jul 2008
    Location
    Maryland
    Posts
    1,691

    Default

    in J i need "reverse selected"
    Quis custodiet ipsos custodies?
    Solid State Builders Group

  2. #242
    Join Date
    Jan 2006
    Location
    Akron, Ohio USA
    Posts
    1,754

    Talking

    Quote Originally Posted by keeperx View Post
    in J i need "reverse selected"
    I thought about that too.

    But what if you have gaps in your selection?

    I guess it could just reverse the order of the selected frames and leave everything else in place.

    That would be an easy way to swap the location of any two frames as well.

    OK.

    James.

  3. #243
    Join Date
    Jul 2008
    Location
    Maryland
    Posts
    1,691

    Default

    yes if its like this
    abcdefghijklmnopqrstuvwxyz
    then it will look like this abcfedghijklmnorqpstuvwhys
    Quis custodiet ipsos custodies?
    Solid State Builders Group

  4. #244
    Join Date
    Jan 2006
    Location
    Akron, Ohio USA
    Posts
    1,754

    Talking

    Quote Originally Posted by keeperx View Post
    please explain how s in the draw menu works..
    Well..... It works NOW!

    It was stuck on the egg. Now it works on the spider!

    Look for a new release soon. I found some other stuff too!

    It puts a blank dot, possibly in the span of a lit segment, thus breaking it into two segments.

    Have you done anything in menu 'l' (L) yet?

    James.

  5. #245
    Join Date
    Jul 2008
    Location
    Maryland
    Posts
    1,691

    Default

    i see it but not yet.. we will talk.. answer your email...
    im in the code now beotch
    Quis custodiet ipsos custodies?
    Solid State Builders Group

  6. #246
    Join Date
    Jan 2006
    Location
    Akron, Ohio USA
    Posts
    1,754

    Talking LaserBoy 12-20-2008 !!!

    http://hacylon.case.edu/laser/LaserB...12_20_2008.zip

    Booo Yah! right back at' cha... Twit!

    James.

  7. #247
    Join Date
    Jul 2008
    Location
    Maryland
    Posts
    1,691

    Default

    ok look at this.. should it work??
    Code:
    void spin(ez_uail_frame_set* p_frame_set)
    {
        ez_3D_float        a(0, 0, pi/100);
        ez_uail_frame      frame;
        ez_uail_frame_set  out;
        int                frame_count;
    
    
        for(frame_count = 0; frame_count < p_frame_set->number_of_frames(); frame_count++)
        {
            frame = p_frame_set->at(frame_count);
            frame.rotate_around_origin(a * frame_count);
            out += frame;
    
        }
        out.save_as_uail("spin.ild");
        return;
    }
    i know there is a spin frame effect but this is a frameset effect
    Quis custodiet ipsos custodies?
    Solid State Builders Group

  8. #248
    Join Date
    Jul 2008
    Location
    Maryland
    Posts
    1,691

    Default

    nvm i got it
    Code:
    void spin(ez_uail_frame_set* p_frame_set)
    {
        ez_3D_float        a(0, 0, one_degree);
        ez_uail_frame      frame;
        ez_uail_frame_set  out; 
        int                frame_count;
    
    
        for(frame_count = 0; frame_count < p_frame_set->number_of_frames(); frame_count++)
        {
            frame = p_frame_set->at(frame_count);
            frame.rotate_around_origin(a * frame_count);
            out += frame;
    
        }
        out.save_as_uail("spin.ild");
        return;
    }
    Quis custodiet ipsos custodies?
    Solid State Builders Group

  9. #249
    Join Date
    Jan 2006
    Location
    Akron, Ohio USA
    Posts
    1,754

    Talking

    It nice to see that someone has finally taken the time to make the journey far ehough into the code that is LaserBoy to be able to see it for the art that it is.

    Thanks dude!

    That's what it's all about for me!

    Code:
    constructive_human_effort  art;
    art += your_imagination;
    art.give_to_the_world();
    James.
    Last edited by James Lehman; 12-20-2008 at 21:27.

  10. #250
    Join Date
    Jan 2006
    Location
    Akron, Ohio USA
    Posts
    1,754

    Talking

    So.... Now do you see why a mouse is not such an important thing?

    James.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •