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
  • Former Member
    Former Member over 14 years ago

    Victor Fraenckel schrieb:

     

    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?

     

    Did you also have a loop at HELP ARC, and did you realize how manually

    drawing ARCs works?

    You need to know that the command line syntax exactly follows the "mouse

    click syntax". At the command line, you simply provide coordinates as if

    they were clicked by mouse.

     

    You need to provide three coordinates: The first is the beginning of the

    ARC, the second is exactly the opposite side of the ARC (say, at 180

    degrees) - so your "center" coordinate is defined as the position right

    (centered) between those two coordinates.

    The third coordinate, finally, defines the angle of the ARC (related to

    the center) - regardless if it's on the ARC diameter or not.

     

    So, if you enter

         ARC 0.1 (-1 0) (1 0) (1 1);

    you'll get an ARC of width 0.1, starting at (-1 0) which is the first

    given coordinate, centered at (0 0) which is exactly halfway between the

    first two coordinates, and ending at 45 degrees (defined by the third

    coordinate).

     

    You didn't mention starting and ending angle of the ARC you need, so I

    can't provide a working command for your particular need. However,

    assuming you need a 180° arc, the command would look like:

         grid inch;

         arc  (0 1.7) (1 1.7) (1 1.7);

    You can specify the direction of the ARC with "CW" and "CCW" parameters.

     

    Tilmann

     

     

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

    Victor Fraenckel schrieb:

     

    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?

     

    Did you also have a loop at HELP ARC, and did you realize how manually

    drawing ARCs works?

    You need to know that the command line syntax exactly follows the "mouse

    click syntax". At the command line, you simply provide coordinates as if

    they were clicked by mouse.

     

    You need to provide three coordinates: The first is the beginning of the

    ARC, the second is exactly the opposite side of the ARC (say, at 180

    degrees) - so your "center" coordinate is defined as the position right

    (centered) between those two coordinates.

    The third coordinate, finally, defines the angle of the ARC (related to

    the center) - regardless if it's on the ARC diameter or not.

     

    So, if you enter

         ARC 0.1 (-1 0) (1 0) (1 1);

    you'll get an ARC of width 0.1, starting at (-1 0) which is the first

    given coordinate, centered at (0 0) which is exactly halfway between the

    first two coordinates, and ending at 45 degrees (defined by the third

    coordinate).

     

    You didn't mention starting and ending angle of the ARC you need, so I

    can't provide a working command for your particular need. However,

    assuming you need a 180° arc, the command would look like:

         grid inch;

         arc  (0 1.7) (1 1.7) (1 1.7);

    You can specify the direction of the ARC with "CW" and "CCW" parameters.

     

    Tilmann

     

     

    • 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