Results 1 to 5 of 5

Thread: Developing sections from Plan

  1. #1
    Member
    Join Date
    2016-10
    Posts
    31
    Login to Give a bone
    0

    Question Developing sections from Plan

    Hi Friends,

    i have struggled with drawing sections every time with help of plan data. please help with any idea. is this really possible by code?
    procedure is if select the lines by cross window, with help of selected set of lines should develop sections and ask for insert point of developed sections.

    Note depth or height of all sections are equal. i.e 24".

    please find sample drawings of input plan and required out put sections.

    Thanks..
    Attached Files Attached Files
    Last edited by Structo; 2017-08-17 at 04:58 PM.

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

    Default Re: Developing sections from Plan

    Whilst I dont have anything there is a way of starting and that is to use ssget "F" option it will pick up the cross beams in the correct order and then you can get the intersection of these lines so drawing the intermediate beams at correct spans. Add a depth and you have part 1 done. You can use inters or vl-intersectwith to work out the points.

    Code:
    ; this is your fence line
    (setvar "osmode" 512)
    (setq pt1 (getpoint))
    (setvar "osmode" 128 )
    (setq pt2 (getpoint pt1))
    (setq lst (list pt1 pt2))
    (setq ss (ssget "F" lst))
    Last edited by Opie; 2017-09-11 at 02:41 PM. Reason: fixed code tag ~Opie

  3. #3
    Member
    Join Date
    2016-10
    Posts
    31
    Login to Give a bone
    0

    Default Re: Developing sections from Plan

    Quote Originally Posted by BIG-AL View Post
    Whilst I dont have anything there is a way of starting and that is to use ssget "F" option it will pick up the cross beams in the correct order and then you can get the intersection of these lines so drawing the intermediate beams at correct spans. Add a depth and you have part 1 done. You can use inters or vl-intersectwith to work out the points.
    Hi friend,
    Thank you for reply. how to use your code? is that lisp routine?


    Thanks.

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

    Default Re: Developing sections from Plan

    I would do a google for drawing cad structural beams, I know what happens next and that is the other 22 options that you would like. Hence doing this type of work there are commercial packages available. There speed of creating soon out ways the purchase cost. Depending on where you are in the world you should find something. As a start www.strucplus.com.au

  5. #5
    Member
    Join Date
    2016-10
    Posts
    31
    Login to Give a bone
    0

    Default Re: Developing sections from Plan

    Quote Originally Posted by BIG-AL View Post
    I would do a google for drawing cad structural beams, I know what happens next and that is the other 22 options that you would like. Hence doing this type of work there are commercial packages available. There speed of creating soon out ways the purchase cost. Depending on where you are in the world you should find something. As a start www.strucplus.com.au
    Hi Friend,
    I dont need such type of software and tasks. i need only develop Simple Longitudinal sections only.

    Thanks!!

Similar Threads

  1. 2014: ROAD SECTIONS & PLAN PROFILES
    By djtabuada in forum AutoCAD General
    Replies: 2
    Last Post: 2014-08-21, 11:17 PM
  2. Where have my sections gone (in my 2nd floor framing plan)?
    By Design Apparatus in forum Revit Architecture - General
    Replies: 3
    Last Post: 2012-03-15, 12:20 AM
  3. Cross Sections in Plan Production
    By civil3d.wishlist1941 in forum Civil 3D Wish List
    Replies: 1
    Last Post: 2008-11-11, 04:05 PM
  4. Cross Sections in Plan Production
    By civil3d.wishlist1941 in forum Civil 3D Wish List
    Replies: 1
    Last Post: 2007-10-01, 07:36 PM
  5. SECTIONS NOT SHOWING ON ROOF PLAN
    By jwilhelm in forum Revit Architecture - General
    Replies: 6
    Last Post: 2004-10-18, 04:51 PM

Tags for this Thread

Posting Permissions

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