Beispiel #1
0
 /// <summary>
 ///     Initializes a new instance of Arrow with a Point as start point and a
 ///     Dot as end-point, and arrowheads where specified by the
 ///     endtypes parameter.
 /// </summary>
 /// <param name="sp">The starting point</param>
 /// <param name="ep">The ending point</param>
 /// <param name="endtypes">endtype constant saying which end(s) should have arrowhead(s)</param>
 public Arrow(Point sp, Dot ep, endtype endtypes)
 {
     constructionHelper4(sp, ep, endtypes);
 }
Beispiel #2
0
 /// <summary>
 ///     Initializes a new instance of Arrow with a Point as start point and a
 ///     Dot as end-point.
 /// </summary>
 /// <param name="sp">The starting point</param>
 /// <param name="ep">The ending point</param>
 public Arrow(Point sp, Dot ep)
 {
     constructionHelper4(sp, ep, endtype.START);
 }
Beispiel #3
0
 /// <summary>
 ///     Initializes a new instance of Arrow with a Dot as start point and a
 ///     Point as end-point, and arrowheads where specified by the
 ///     endtypes parameter.
 /// </summary>
 /// <param name="sp">The starting point</param>
 /// <param name="ep">The ending point</param>
 /// <param name="endtypes">endtype constant saying which end(s) should have arrowhead(s)</param>
 public Arrow(Dot sp, Point ep, endtype endtypes)
 {
     constructionHelper3(sp, ep, endtypes);
 }
Beispiel #4
0
 /// <summary>
 /// Build an arrow using a Dot (manipulable) as starting point, and a Point as ending point
 ///
 /// </summary>
 /// <param name="sp">The start of the arrow</param>
 /// <param name="ep">The end of the arrow</param>
 public Arrow(Dot sp, Point ep)
 {
     constructionHelper3(sp, ep, endtype.END);
 }
Beispiel #5
0
 /// <summary>
 ///     Initializes a new instance of Arrow with specified Dots as start
 ///     and end-points, and arrowheads where specified by the
 ///     endtypes parameter.
 /// </summary>
 /// <param name="sp">The starting point</param>
 /// <param name="ep">The ending point</param>
 /// <param name="endtypes">endtype constant saying which end(s) should have arrowhead(s)</param>
 public Arrow(Dot sp, Dot ep, endtype endtypes)
 {
     constructionHelper2(sp, ep, endtypes);
 }
Beispiel #6
0
 /// <summary>
 /// Build an arrow using Dots (manipulable) as starting and ending points
 ///
 /// </summary>
 /// <param name="sp">The start of the arrow</param>
 /// <param name="ep">The end of the arrow</param>
 public Arrow(Dot sp, Dot ep)
 {
     constructionHelper2(sp, ep, endtype.END);
 }