Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Any Program/Method to do it in a better & simplified way

  1. #11
    Member
    Join Date
    2011-07
    Posts
    22
    Login to Give a bone
    0

    Default Re: Any Program/Method to do it in a better & simplified way

    Hi, thanks for the inputs. I'm new to this arena and i require your guidance on how to learn lisp and how to use them. I can understand your point of view. I didnt mean in the way you have understood. I know this is a huge task and no one does it for free . I Apologize if i have asked something wrong.

  2. #12
    All AUGI, all the time
    Join Date
    2003-07
    Posts
    560
    Login to Give a bone
    0

    Default Re: Any Program/Method to do it in a better & simplified way

    Break the task down into smaller bits do the excel last, the tray is made up of simple objects so look at code that draws say plines from calculated points, then how to use repeat to make multiple circles and so on, look at how you would draw it manually.

    Re the tray using a dynamic block would be a good start as you make wider a cable is auto added.

    The vertical and supports including welds can be done simply using lisp and ask questions, they would use the Polar command to work out the next point.

    Code:
    ;example box
    (setq L (getdist "enter length"))
    (setq W (getdist "enter width"))
    (setq pt1 (getpoint "Pick lower left"))
    (setq pt2 (polar pt1 0.0 l))
    (setq pt3 (polar pt2 (/ pi2 2.0) w))
    (setq pt4 (polar pt3 pi L))
    (command "Pline" pt1 pt2 pt3 pt4 "c")
    Last edited by BIG-AL; 2017-08-31 at 02:50 AM.

Page 2 of 2 FirstFirst 12

Similar Threads

  1. Making Road corridor simplified way
    By ljupadhyay in forum Civil 3D - Civil Design Companion - General
    Replies: 2
    Last Post: 2019-10-24, 09:10 AM
  2. Simplified Assembly Representations
    By inventor.wishlist1738 in forum Inventor Wish List
    Replies: 3
    Last Post: 2012-09-03, 02:46 PM
  3. Simplified Structural Elements
    By Wish List System in forum Revit Architecture - Wish List
    Replies: 0
    Last Post: 2012-06-12, 09:45 PM
  4. Simplified Generation of iAssemblies
    By inventor.wishlist1738 in forum Inventor Wish List
    Replies: 0
    Last Post: 2007-05-17, 05:27 PM
  5. Simplified Line Keyboard Shortcuts
    By Scott Hopkins in forum Revit Architecture - Tips & Tricks
    Replies: 0
    Last Post: 2003-07-24, 06:05 PM

Posting Permissions

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