Group Abstract Group Abstract

Message Boards Message Boards

0
|
83 Views
|
2 Replies
|
5 Total Likes
View groups...
Share
Share this post:

How to create circular arcs with arrowheads?

Posted 4 days ago

I am creating an illustration with 3 circular arcs. I would like to have counter-clockwise arrowheads on them. How is this done?

(* example *)
xCoord = 1.5;
yCoord = 0.475;
r = 0.365;
Graphics[{
  Green, Thick,
  Circle[{xCoord, yCoord}, {r, r}, {-Pi (1/3 - 1/12), Pi (1/3 - 1/12)}],
  Circle[{xCoord, yCoord}, {r, r}, {Pi (1/3 + 1/12), Pi (2/3 + 1/4)}],
  Circle[{xCoord, yCoord}, {r, r}, {Pi (1 + 1/12), Pi (3/2 + 1/12)}]
  }, ImageSize -> Small]

enter image description here

POSTED BY: Richard Frost
2 Replies

In its simplest form this could be a start:

xCoord = 1.5;
yCoord = 0.475;
r = 0.365;
Graphics[{Green, Thick, Arrowheads[Large], 
  Arrow@Circle[{xCoord, yCoord}, {r, r}, {-Pi (1/3 - 1/12), Pi (1/3 - 1/12)}], , 
  Arrow@Circle[{xCoord, yCoord}, {r, r}, {Pi (1/3 + 1/12), Pi (2/3 + 1/4)}], 
  Arrow@Circle[{xCoord, yCoord}, {r, r}, {Pi (1 + 1/12),  Pi (3/2 + 1/12)}]}, ImageSize -> Small]
POSTED BY: Henrik Schachner

POSTED BY: Mariusz Iwaniuk
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard