+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13

Thread: Ucs?

  1. #1
    Full Member
    Computer Details
    musyas's Computer Details
    Operating System:
    XP
    Motherboard:
    Sapphire
    CPU:
    1.5g Pentium 3
    RAM:
    512+256=
    Graphics:
    256mb
    Primary Storage:
    40G HDD Western
    Monitor:
    15" CRT Samsung
    Using
    AutoCAD 2009
    Join Date
    Sep 2008
    Location
    Equador
    Posts
    51

    Default Ucs?

    Registered forum members do not see this ad.

    Anyone here can give me a guide that how to rotate the UCS icon, angle by angle. This is my big prolblem.

  2. #2
    Super Member MaxwellEdison's Avatar
    Computer Details
    MaxwellEdison's Computer Details
    Operating System:
    XP Pro (32-bit)
    Computer:
    Dell Precision PWS490
    CPU:
    Intel Xeon 5130
    RAM:
    4GB DDR2
    Graphics:
    nVidea Quadro FX 3500
    Monitor:
    Dell 20" LCD Widescreen (Main) NEC Accusync 125F 20" CRT (Secondary)
    Using
    Architecture 2009
    Join Date
    Dec 2008
    Location
    Lebanon, PA
    Posts
    734

    Default

    This tutorial should cover the basics for you. If you are in the Ribbon view on 09 some of the commands may be in different locations, but under the toolbars they should all function the same.
    Just because you're , doesn't mean wrong is all that's .

  3. #3
    Full Member
    Computer Details
    musyas's Computer Details
    Operating System:
    XP
    Motherboard:
    Sapphire
    CPU:
    1.5g Pentium 3
    RAM:
    512+256=
    Graphics:
    256mb
    Primary Storage:
    40G HDD Western
    Monitor:
    15" CRT Samsung
    Using
    AutoCAD 2009
    Join Date
    Sep 2008
    Location
    Equador
    Posts
    51

    Default

    OK tnx Sir.. i'll practice it right now.

  4. #4
    Senior Member mugshot's Avatar
    Using
    AutoCAD 2008
    Join Date
    Jun 2008
    Location
    papua new guinea
    Posts
    218

    Default

    ... i use ucs base on by face and not by coordinate. i.e. instead of sw,ew,nw,etc- i set ucs>fr(front). its keep me faster track where i should have draw my lines.
    ... he who dares to teach must not cease to learn....

  5. #5
    Forum Deity rkent's Avatar
    Computer Details
    rkent's Computer Details
    Operating System:
    WIN7 PRO 64bit
    Computer:
    Dell Precision T7500
    CPU:
    Xeon Dual Core E5503 2.0Ghz
    RAM:
    6GB DDR3 ECC SDRAM, 1333MHz, 6x1GB
    Graphics:
    nVidia Quadro 3800
    Primary Storage:
    300Gb, 10K rpm
    Monitor:
    Dell 24" FS (2x)
    Discipline
    Mechanical
    rkent's Discipline Details
    Occupation
    Facilities Design - Semi-conductor manufacturing
    Discipline
    Mechanical
    Details
    Designer: Process Piping, P&ID's, Machine Part Design, Planning / General Arrangement. Facilities Management. Drafting: Electrical, Controls, Architectural.
    Using
    Mechanical 2014
    Join Date
    Nov 2007
    Location
    Lat:35, Long:-106, Elev: 5164'
    Posts
    3,371

    Default

    I set up some quick keys to automate manipulating the UCS and 12 or so quick keys take care of a large portion of what is needed for the 3D that I do.

    In my acaddoc.lsp file I have the following for 3D.
    (DEFUN C:U3 () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "3")(PRIN1))
    (DEFUN C:UB () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "BOTTOM")(PRIN1))
    (DEFUN C:UBA () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "BACK")(PRIN1))
    (DEFUN C:UF () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "FRONT")(PRIN1))
    (DEFUN C:UL () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "LEFT")(PRIN1))
    (DEFUN C:UM () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "MOVE")(PRIN1))
    (DEFUN C:UO () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "OBJECT")(PRIN1))
    (DEFUN C:UR () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "RIGHT")(PRIN1))
    (DEFUN C:UT () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "TOP")(PRIN1))
    (DEFUN C:UV () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "VIEW")(PRIN1))
    (DEFUN C:UW () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "WORLD")(PRIN1))
    (DEFUN C:UZ () (SETVAR "CMDECHO" 0)(COMMAND ".UCS" "ZAXIS")(PRIN1))
    (DEFUN C: pW () (SETVAR "CMDECHO" 0)(COMMAND ".PLAN" "WORLD")(PRIN1))
    (DEFUN C:X9 () (SETVAR "CMDECHO" 1)(COMMAND "UCS" "X" "90")(PRIN1))
    (DEFUN C:Y9 () (SETVAR "CMDECHO" 1)(COMMAND "UCS" "Y" "90") (PRIN1))
    (DEFUN C:Z9 () (SETVAR "CMDECHO" 1)(COMMAND "UCS" "Z" "90")(PRIN1))

    To understand what each line does look at the two characters after the (DEFUN C: .
    X9 will rotate the UCS 90 degrees around the X axis., hitting enter will rotate the UCS around the X axis 90 more degrees. Same idea for Y9 and Z9.

    If you have a line you want to align the UCS to, try UO, for UCS, object. Type UO and pick an object.

    Type UW and PW to set UCS and Plan to World to get you back to a default starting point.

    Type UCS, enter and the command line and look at and explore all the available options.
    Last edited by rkent; 23rd Dec 2008 at 08:10 pm. Reason: removing emoticons that shouldn't be there
    "You are entitled to your own opinion but you are not entitled to your own facts." Daniel Patrick Moynihan

  6. #6
    Super Member
    Using
    Architecture 2012
    Join Date
    Nov 2007
    Location
    El Paso, Tx
    Posts
    550

    Default

    I find UCS, 3 point, to be the easiest to use...

  7. #7
    Senior Member mugshot's Avatar
    Using
    AutoCAD 2008
    Join Date
    Jun 2008
    Location
    papua new guinea
    Posts
    218

    Default

    i guess everyone has its own approach to their most comfortable ways.....

    ... and merry Christmas to all and have a profitable year!!!
    ... he who dares to teach must not cease to learn....

  8. #8
    Full Member
    Computer Details
    musyas's Computer Details
    Operating System:
    XP
    Motherboard:
    Sapphire
    CPU:
    1.5g Pentium 3
    RAM:
    512+256=
    Graphics:
    256mb
    Primary Storage:
    40G HDD Western
    Monitor:
    15" CRT Samsung
    Using
    AutoCAD 2009
    Join Date
    Sep 2008
    Location
    Equador
    Posts
    51

    Default

    @rkent
    Can you give me the complete LISP code to copy, so that i can do and make a source, Or is that the code anyway?

  9. #9
    Senior Member Bogbadbob658's Avatar
    Computer Details
    Bogbadbob658's Computer Details
    Operating System:
    Windows 7
    Motherboard:
    Asus P8P67 LE
    CPU:
    Intel 2nd Generation Coreā„¢ i5-2500
    RAM:
    8GB 1333MHz Dual Channel DDR3 SDRAM
    Graphics:
    512MB Nvidia GeForce Quadro FX 580
    Primary Storage:
    1TB Samsung F3 SATA 7200rpm 32MB Cache
    Monitor:
    24" Iiyama LCD Monitor - Full HD 1920x1080
    Using
    Architecture 2012
    Join Date
    Aug 2007
    Location
    Gloucester UK
    Posts
    252

    Default

    I would have thought the simplist way was to use the UCS 'Z' option and set the angle to 1. If you want the view to rotate rather than the ucs then set 'ucsfollow' to 1.

  10. #10
    Senior Member mugshot's Avatar
    Using
    AutoCAD 2008
    Join Date
    Jun 2008
    Location
    papua new guinea
    Posts
    218

    Default

    Registered forum members do not see this ad.

    ... here is a lisp that I've got a month ago.. i would like to share it....
    Attached Files
    ... he who dares to teach must not cease to learn....

Bookmarks

Posting Permissions

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