See the top rated post in this thread. Click here

Results 1 to 10 of 10

Thread: 3D revolution impossible with the chosen angle

  1. #1
    Member
    Join Date
    2021-01
    Posts
    7
    Login to Give a bone
    0

    Default 3D revolution impossible with the chosen angle

    Hello everybody,

    I am new among you and I congratulate you on this wonderful forum!

    I am using ASD 2014 and I cannot make the 3D revolution of my raft with the angle I have chosen (337.25 °)

    Autocad always gives me an angle smaller than my chosen angle (see picture below).

    angle_revolution.JPG

    Note: I adjusted my settings before making the revolution (ortho mode desabled, snapping and locating objects desabled)..but that did not succeed !!

    I have also set the unit of the angle to degree (see the picture below)

    unité.JPG

    the 3D revolution results as follows:

    radier_337°.JPG
    radier_337°_vue en plan.JPG

    Note: I am using the revolution to calculate the volume of concrete for the raft to be poured, how can I remedy the problem?

    Thx.

  2. #2
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,409
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Hello, and welcome to AUGI.

    You may want to post the dwg file so others can take a look at it. Click on the Go Advanced button when you are replying to access the file attachment feature.
    C:> ED WORKING....


    LinkedIn

  3. #3
    Member
    Join Date
    2021-01
    Posts
    7
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Hi Ed Jobe,

    Quote Originally Posted by Ed Jobe View Post
    Hello, and welcome to AUGI.

    You may want to post the dwg file so others can take a look at it. Click on the Go Advanced button when you are replying to access the file attachment feature.
    Thx for your reply
    pls check my file below

    Have a nice day
    Attached Files Attached Files

  4. #4
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,409
    Login to Give a bone
    1

    Default Re: 3D revolution impossible with the chosen angle

    The first issue is because you have Direction set to North instead of the default East. Also, you get a negative number because you have Clockwise (sens horaire) checked.
    C:> ED WORKING....


    LinkedIn

  5. #5
    Member
    Join Date
    2021-01
    Posts
    7
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Hi Ed Jobe,
    Quote Originally Posted by Ed Jobe View Post
    The first issue is because you have Direction set to North instead of the default East. Also, you get a negative number because you have Clockwise (sens horaire) checked.
    How to set thoses parameters as default?
    Thx 😉

  6. #6
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,665
    Login to Give a bone
    1

    Default Re: 3D revolution impossible with the chosen angle

    Quote Originally Posted by rtebboune794209 View Post
    Hi Ed Jobe,

    How to set thoses parameters as default?
    Thx 😉
    The system variables you're looking for are ANGBASE and ANGDIR
    Something changed their default values so you may want to avoid it happening again.
    You could add
    Code:
    (if (/= (getvar 'angbase) 0)(progn(setvar 'angbase 0)(princ "\nSet base angle to 0 (East). ANGBASE")))
    (if (/= (getvar 'angdir) 0)(progn(setvar 'angdir 0)(princ "\nSet angle direction to counterclockwise. ANGDIR")))
    to your acaddoc.lsp to make sure they're always set correctly or add them to the System Variable Monitor.

  7. #7
    Member
    Join Date
    2021-01
    Posts
    7
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Hi Beauford,
    Thx for your reply
    Quote Originally Posted by Tom Beauford View Post
    You could add
    Code:
    (if (/= (getvar 'angbase) 0)(progn(setvar 'angbase 0)(princ "\nSet base angle to 0 (East). ANGBASE")))
    (if (/= (getvar 'angdir) 0)(progn(setvar 'angdir 0)(princ "\nSet angle direction to counterclockwise. ANGDIR")))
    to your acaddoc.lsp to make sure they're always set correctly or add them to the System Variable Monitor.
    Can you show me a video or give me a link explain how to do that?
    And Can I type the two codes lignes directly on commande line?

    Thx.

  8. #8
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,665
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Quote Originally Posted by REDO79 View Post
    Hi Beauford,
    Thx for your reply


    Can you show me a video or give me a link explain how to do that?
    And Can I type the two codes lignes directly on commande line?

    Thx.
    Acad.lsp & acaddoc.lsp are files users create, they don't come installed with AutoCAD.
    By default acad.lsp loads when AutoCAD is started.
    Acaddoc.lsp loads with each drawing after it opens.
    Read this help link on customization
    About Auto-Loading and Running AutoLISP Routines: http://help.autodesk.com/view/ACD/20...4-D37729D42520

  9. #9
    Member
    Join Date
    2021-01
    Posts
    7
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    Hi Tom Beauford,
    Quote Originally Posted by Tom Beauford View Post
    Acad.lsp & acaddoc.lsp are files users create, they don't come installed with AutoCAD.
    By default acad.lsp loads when AutoCAD is started.
    Acaddoc.lsp loads with each drawing after it opens.
    Read this help link on customization
    About Auto-Loading and Running AutoLISP Routines: http://help.autodesk.com/view/ACD/20...4-D37729D42520
    I've checked your link but I couldn't figure out how to run the LISP commands as well as modify the routines at the AutoCAD startup. (by the way I'm not a programmer). I also didn't find any "LSP" files within the AutoCAD sub folders.
    So, could you please show me how can I exactly find the "acadoc.lsp" files, and instruct me on how to apply changes on both of the "ANGBASE" and "ANGDIR" parameters?
    Thank you

  10. #10
    Administrator Ed Jobe's Avatar
    Join Date
    2000-11
    Location
    Turlock, CA
    Posts
    6,409
    Login to Give a bone
    0

    Default Re: 3D revolution impossible with the chosen angle

    If you're not comfortable programming, you can do it without programming using the SYSVARMONITOR command.
    C:> ED WORKING....


    LinkedIn

Similar Threads

  1. Replies: 1
    Last Post: 2007-03-13, 09:04 AM
  2. Cannot select previously chosen items
    By demilio in forum AutoCAD General
    Replies: 15
    Last Post: 2007-03-12, 03:13 AM
  3. Logitech MX Revolution Middle Button
    By barathd in forum Revit - Hardware & Operating Systems
    Replies: 10
    Last Post: 2006-10-16, 09:55 AM
  4. Replies: 10
    Last Post: 2006-06-14, 03:07 AM
  5. Replies: 4
    Last Post: 2005-12-13, 10:10 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
  •