Click here to Skip to main content
15,880,796 members
Articles / Programming Languages / C#
Article

Draw Straight and Curved Arrows

Rate me:
Please Sign up or sign in to vote.
4.88/5 (30 votes)
30 Jan 2007CPOL2 min read 100.3K   7.1K   93   11
Render custom arrows on any graphics

Sample Image - ArrowRenderer1.png

Sample application using ArrowRenderer routines. Drawing random colored curved arrows.

Sample Image - ArrowRenderer1.png

Another sample application that shows mouse cursor position using many arrows.

Introduction

This article presents some useful routines that help drawing custom arrows on any Graphics object. It allows to choose whether an arrow should be straight or curved. In the second case, the main arrow line is drawn using the Bezier curve.

Background

I know that any question about how to draw an arrow is probably answered quickly, advising the inquirer to read something about different line ending caps. That is true, however one doesn't have a big influence on how the final arrow will be like. Pissed about that, I decided to write my own library that allows a user to draw custom arrows both straight and curved.

Code

  • Width - Gets or sets width (in pixels) of the full base of the arrowhead
  • Theta - Gets or sets angle (in radians) at the arrow tip between the two sides of the arrowhead
  • FillArrowHead - Gets or sets flag indicating whether or not the arrowhead should be filled
  • NumberOfBezierCurveNodes - Gets or sets the number of nodes used to calculate the Bezier curve
  • DrawArrow - Renders the arrow on given graphics using desired parameters
  • DrawArrowOnCurve - Renders the curved arrow on given graphics using desired parameters
  • DrawArrows - Draws arrows between consecutive points

Points of Interest

This code is especially useful when graphs need to be rendered. DrawArrows is particularly useful for that.

Sample Usage

Last semester, I was developing a program that solves the Vehicle Routing Problem for a project at Operational Research. That approach used genetic algorithms. The following picture was generated using my renderer that utilizes, among others, the presented ArrowRenderer class. Grey circles represent depots, while red ones are cities that need to be visited. Arrows are used to show how the route should be performed.

Sample image

Credit

  • Routine that generates the Bezier curve nodes array is a refined version of the one found in "Beziers and Other Splines" chapter from "Programming Microsoft Windows with C#" by Charles Petzold.
  • Simple Vector structure was found long ago somewhere on the Internet. If you own this piece of code, please let me know so I can give you credit.

History

  • 30.01.2007 - First version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect Nokia Siemens Networks
Poland Poland
Michał is C# and whole .NET enthusiast. He graduated from computer science MSc studies at Wroclaw University of Technology, Poland.

He is interested in photography and diving. He is member of PADI, currently with divemaster certificate.

His favorite movies are Matrix, Amélie(Le Fabuleux Destin d'Amélie Poulain), Stargate SG-1 TV Serie and comedies of Mel Brooks.

Michał lives in Wroclaw, Poland. To contact Michał, email him at michal.brylka[mail-'"at'"-sign]op.pl.

Comments and Discussions

 
QuestionVRP with GA Pin
Member 107288248-Jan-15 10:12
Member 107288248-Jan-15 10:12 
General5! Pin
Ulen15151510-Nov-13 3:35
Ulen15151510-Nov-13 3:35 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey26-Feb-12 21:49
professionalManoj Kumar Choubey26-Feb-12 21:49 
QuestionGood work.. small issue not resolved Pin
Manoj Mathew6-Mar-09 12:29
Manoj Mathew6-Mar-09 12:29 
GeneralDrawing custom arrows Pin
crockettk6-Apr-07 4:26
crockettk6-Apr-07 4:26 
GeneralRe: Drawing custom arrows Pin
Michal Brylka6-Apr-07 11:16
Michal Brylka6-Apr-07 11:16 
GeneralRe: Drawing custom arrows Pin
blue.it8x21-Feb-09 5:22
blue.it8x21-Feb-09 5:22 
GeneralGreat bit of Code Pin
matt_Altis28-Mar-07 23:21
matt_Altis28-Mar-07 23:21 
Thanks!

Matt
GeneralRe: Great bit of Code Pin
Michal Brylka29-Mar-07 9:05
Michal Brylka29-Mar-07 9:05 
GeneralRe: Great bit of Code Pin
matt_Altis30-Mar-07 0:56
matt_Altis30-Mar-07 0:56 
GeneralRe: Great bit of Code Pin
Michal Brylka30-Mar-07 15:34
Michal Brylka30-Mar-07 15:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.