element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Autodesk EAGLE
  • Products
  • More
Autodesk EAGLE
EAGLE User Support (English) Using the ARC command
  • Blog
  • Forum
  • Documents
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Autodesk EAGLE to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 2 replies
  • Subscribers 177 subscribers
  • Views 1424 views
  • Users 0 members are here
Related

Using the ARC command

Former Member
Former Member over 14 years ago

I have spent yesterday afternoon and this morning trying to understand how

to use the ARC command on the command line with no luck. All I want to do

is to draw and arc of radius 0.5" centered at 0.5", 1.7" with a specific

line width.

 

The eagle manual is of no help because the description of the command is

too cryptic for me to understand. Can anyone help me understand how to do

this?

 

Any enlightenment will be appreciated.

 

Vic

--

Vic Fraenckel

KC2GUI

windswaytoo ATSIGN gmail DOT com

 

--

Web access to CadSoft support forums at www.eaglecentral.ca.  Where the CadSoft EAGLE community meets.

 

  • Sign in to reply
  • Cancel
Parents
  • Richard_H
    Richard_H over 14 years ago

    Am 25.01.2011 16:20, schrieb Victor Fraenckel:

    I have spent yesterday afternoon and this morning trying to understand how

    to use the ARC command on the command line with no luck. All I want to do

    is to draw and arc of radius 0.5" centered at 0.5", 1.7" with a specific

    line width.

    The eagle manual is of no help because the description of the command is

    too cryptic for me to understand. Can anyone help me understand how to do

    this?

     

    Any enlightenment will be appreciated.

     

    Vic

     

     

     

    Hi Vic,

     

    there are various options, for example:

     

    Set a relative origin first and then use the WIRE command which can draw

    arcs as well. You can use for example polar coordinates.....

     

     

    MARK (0.5 1.7);            # relative origin

    WIRE (P 0.5 0)  @+0.5  (P 0.5 90);   # polar starting point, radius,

                                            ending point of the arc

     

    inside ( ):  P for polar coordinates,

                  first value: radius from the origin, second: angle)

     

     

    2nd example with relative coodinates:

     

      MARK (0.5 1.7);            # relative origin

      WIRE (R0 0.5)  -90  (R0.5 0)    # relative starting point, curve,

                                        relative ending point

     

     

    Please see details about the syntax with radius and curve in the help of

    the WIRE command and Editor Commands/Command Syntax.

     

    I hope this helps.

     

     

    --

    Mit freundlichen Gruessen / Best regards

    Richard Hammerl

    CadSoft Support -- hotline@cadsoft.de

    FAQ: http://www.cadsoft.de/faq.htm

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • Richard_H
    Richard_H over 14 years ago

    Am 25.01.2011 16:20, schrieb Victor Fraenckel:

    I have spent yesterday afternoon and this morning trying to understand how

    to use the ARC command on the command line with no luck. All I want to do

    is to draw and arc of radius 0.5" centered at 0.5", 1.7" with a specific

    line width.

    The eagle manual is of no help because the description of the command is

    too cryptic for me to understand. Can anyone help me understand how to do

    this?

     

    Any enlightenment will be appreciated.

     

    Vic

     

     

     

    Hi Vic,

     

    there are various options, for example:

     

    Set a relative origin first and then use the WIRE command which can draw

    arcs as well. You can use for example polar coordinates.....

     

     

    MARK (0.5 1.7);            # relative origin

    WIRE (P 0.5 0)  @+0.5  (P 0.5 90);   # polar starting point, radius,

                                            ending point of the arc

     

    inside ( ):  P for polar coordinates,

                  first value: radius from the origin, second: angle)

     

     

    2nd example with relative coodinates:

     

      MARK (0.5 1.7);            # relative origin

      WIRE (R0 0.5)  -90  (R0.5 0)    # relative starting point, curve,

                                        relative ending point

     

     

    Please see details about the syntax with radius and curve in the help of

    the WIRE command and Editor Commands/Command Syntax.

     

    I hope this helps.

     

     

    --

    Mit freundlichen Gruessen / Best regards

    Richard Hammerl

    CadSoft Support -- hotline@cadsoft.de

    FAQ: http://www.cadsoft.de/faq.htm

     

     

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube