Packages

case class QArrow(p1: R2 = R2 (0.0, 0.0), pc: R2 = R2 (0.0, 0.0), p2: R2 = R2 (0.0, 0.0), len: Int = 10) extends Double with CurvilinearShape with Product with Serializable

The QArrow class uses Java's Path2D class to create a quad curve with an arrowhead on the far end. The main curve is defined by points 'p1' and 'p2' along with a control point 'pc'. Points 'p3' and 'p4' are the corners of the triangular arrowhead.

p1

the starting point for the curve/arc

pc

the control point for the curve/arc

p2

the ending point for the curve/arc

len

the length of the arrowhead on the curve/arc

Linear Supertypes
Product, Equals, CurvilinearShape, Error, Double, Serializable, Path2D, Cloneable, Shape, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. QArrow
  2. Product
  3. Equals
  4. CurvilinearShape
  5. Error
  6. Double
  7. Serializable
  8. Path2D
  9. Cloneable
  10. Shape
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new QArrow(p1: R2, p2: R2, bend: Double)

    Construct a QArrow (quad arc) where bend indicates the distance to the control point.

    Construct a QArrow (quad arc) where bend indicates the distance to the control point.

    p1

    the starting point for the curve/arc

    p2

    the ending point for the curve/arc

    bend

    the bend or curvature (1. => line length)

  2. new QArrow(p1: R2 = R2 (0.0, 0.0), pc: R2 = R2 (0.0, 0.0), p2: R2 = R2 (0.0, 0.0), len: Int = 10)

    p1

    the starting point for the curve/arc

    pc

    the control point for the curve/arc

    p2

    the ending point for the curve/arc

    len

    the length of the arrowhead on the curve/arc

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def append(arg0: PathIterator, arg1: Boolean): Unit
    Definition Classes
    Double → Path2D
  5. final def append(arg0: Shape, arg1: Boolean): Unit
    Definition Classes
    Path2D
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. final def clone(): AnyRef
    Definition Classes
    Double → Path2D → AnyRef
  8. final def closePath(): Unit
    Definition Classes
    Path2D
  9. final def contains(arg0: Rectangle2D): Boolean
    Definition Classes
    Path2D → Shape
  10. final def contains(arg0: Double, arg1: Double, arg2: Double, arg3: Double): Boolean
    Definition Classes
    Path2D → Shape
  11. final def contains(arg0: Point2D): Boolean
    Definition Classes
    Path2D → Shape
  12. final def contains(arg0: Double, arg1: Double): Boolean
    Definition Classes
    Path2D → Shape
  13. final def createTransformedShape(arg0: AffineTransform): Shape
    Definition Classes
    Path2D
  14. final def curveTo(arg0: Double, arg1: Double, arg2: Double, arg3: Double, arg4: Double, arg5: Double): Unit
    Definition Classes
    Double → Path2D
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def flaw(method: String, message: String): Unit
    Definition Classes
    Error
  17. final def getBounds(): java.awt.Rectangle
    Definition Classes
    Path2D → Shape
  18. final def getBounds2D(): Rectangle2D
    Definition Classes
    Double → Shape
  19. def getCenterX(): Double

    Get the x-coordinate of the center of the main line/curve.

    Get the x-coordinate of the center of the main line/curve.

    Definition Classes
    QArrowCurvilinearShape
  20. def getCenterY(): Double

    Get the y-coordinate of the center of the main line/curve.

    Get the y-coordinate of the center of the main line/curve.

    Definition Classes
    QArrowCurvilinearShape
  21. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def getCurrentPoint(): Point2D
    Definition Classes
    Path2D
  23. final def getPathIterator(arg0: AffineTransform): PathIterator
    Definition Classes
    Double → Shape
  24. final def getPathIterator(arg0: AffineTransform, arg1: Double): PathIterator
    Definition Classes
    Path2D → Shape
  25. final def getWindingRule(): Int
    Definition Classes
    Path2D
  26. final def intersects(arg0: Rectangle2D): Boolean
    Definition Classes
    Path2D → Shape
  27. final def intersects(arg0: Double, arg1: Double, arg2: Double, arg3: Double): Boolean
    Definition Classes
    Path2D → Shape
  28. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  29. val len: Int
  30. final def lineTo(arg0: Double, arg1: Double): Unit
    Definition Classes
    Double → Path2D
  31. final def moveTo(arg0: Double, arg1: Double): Unit
    Definition Classes
    Double → Path2D
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. def next(width: Double, height: Double): R2

    Return the next point on the CurvilinearShape (one step beyond current point) and adjust from top-left to center coordinates for the object traversing the curve based on its width and height.

    Return the next point on the CurvilinearShape (one step beyond current point) and adjust from top-left to center coordinates for the object traversing the curve based on its width and height. Return null if past end point. This is an optional method.

    width

    the width of object traversing the curve

    height

    the height of object traversing the curve

    Definition Classes
    CurvilinearShape
  34. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  35. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  36. var p1: R2
  37. var p2: R2
  38. var pc: R2
  39. def productElementNames: Iterator[String]
    Definition Classes
    Product
  40. final def quadTo(arg0: Double, arg1: Double, arg2: Double, arg3: Double): Unit
    Definition Classes
    Double → Path2D
  41. final def reset(): Unit
    Definition Classes
    Path2D
  42. def setLine(_p1: R2, _pc: R2, _p2: R2): Unit

    Set (or reset) the location for the QArrow as a curve using an explicitly given control point.

    Set (or reset) the location for the QArrow as a curve using an explicitly given control point.

    _p1

    the starting point

    _pc

    the control point

    _p2

    the ending point

    Definition Classes
    QArrowCurvilinearShape
  43. def setLine(_p1: R2, _p2: R2, bend: Double): Unit

    Set (or reset) the location for the QArrow as a curve using bend to compute the control point.

    Set (or reset) the location for the QArrow as a curve using bend to compute the control point.

    _p1

    the starting point

    _p2

    the ending point

    bend

    the bend or curvature (1. => line-length)

    Definition Classes
    QArrowCurvilinearShape
  44. def setLine(_p1: R2, _p2: R2): Unit

    Set (or reset) the location for the QArrow as a line.

    Set (or reset) the location for the QArrow as a line.

    _p1

    the starting point

    _p2

    the ending point

    Definition Classes
    QArrowCurvilinearShape
  45. final def setWindingRule(arg0: Int): Unit
    Definition Classes
    Path2D
  46. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  47. final def transform(arg0: AffineTransform): Unit
    Definition Classes
    Double → Path2D
  48. final def trimToSize(): Unit
    Definition Classes
    Double → Path2D
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Product

Inherited from Equals

Inherited from CurvilinearShape

Inherited from Error

Inherited from Double

Inherited from Serializable

Inherited from Path2D

Inherited from Cloneable

Inherited from Shape

Inherited from AnyRef

Inherited from Any

Ungrouped