Packages

trait Renderer extends AnyRef

This is the interface that all renderers need to implement. It provides basic drawing methods that are used for all plotting. By going through this interface, SwiftVis2 can render plots in different ways using the same plotting code.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Renderer
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def drawEllipse(cx: Double, cy: Double, width: Double, height: Double): Unit
  2. abstract def drawLine(x1: Double, y1: Double, x2: Double, y2: Double): Unit
  3. abstract def drawLinePath(x: Seq[Double], y: Seq[Double]): Unit
  4. abstract def drawPolygon(pnts: Seq[(Double, Double)]): Unit
  5. abstract def drawPolygon(xs: Seq[Double], ys: Seq[Double]): Unit
  6. abstract def drawRectangle(x: Double, y: Double, width: Double, height: Double): Unit
  7. abstract def drawText(s: String, x: Double, y: Double, align: Renderer.HorizontalAlign.Value, angle: Double): Unit
  8. abstract def fillEllipse(cx: Double, cy: Double, width: Double, height: Double): Unit
  9. abstract def fillPolygon(pnts: Seq[(Double, Double)]): Unit
  10. abstract def fillPolygon(xs: Seq[Double], ys: Seq[Double]): Unit
  11. abstract def fillRectangle(x: Double, y: Double, width: Double, height: Double): Unit
  12. abstract def finish(): Unit
  13. abstract def maxFontSize(strings: Seq[String], allowedWidth: Double, allowedHeight: Double, fd: FontData): Double
  14. abstract def restore(): Unit
  15. abstract def save(): Unit
  16. abstract def setClip(bounds: Bounds): Unit
  17. abstract def setColor(argb: Int): Unit
  18. abstract def setFont(fd: FontData, size: Double): Unit
  19. abstract def setStroke(stroke: StrokeData): Unit

Concrete 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 asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate() @throws( ... )
  6. def drawRectangle(bounds: Bounds): Unit
  7. def drawRectangleC(cx: Double, cy: Double, width: Double, height: Double): Unit
  8. def drawRectangleP(x1: Double, y1: Double, x2: Double, y2: Double): Unit
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  11. def fillRectangle(bounds: Bounds): Unit
  12. def fillRectangleC(cx: Double, cy: Double, width: Double, height: Double): Unit
  13. def fillRectangleP(x1: Double, y1: Double, x2: Double, y2: Double): Unit
  14. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  23. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  24. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

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

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped