Graphics2DGraphicsContext

object Graphics2DGraphicsContext extends GraphicsContext[Graphics2D]

Higher level shape primitives

trait GraphicsContext[Graphics2D]
class Object
trait Matchable
class Any

Value members

Concrete methods

def bitmap(gc: Graphics2D)(transform: Transform, image: BufferedImage): Unit
def fillCircle(gc: Graphics2D)(transform: Transform, fill: Fill, diameter: Double): Unit
def fillClosedPath(gc: Graphics2D)(transform: Transform, fill: Fill, elements: List[PathElement]): Unit
def fillOpenPath(gc: Graphics2D)(transform: Transform, fill: Fill, elements: List[PathElement]): Unit
def fillPolygon(gc: Graphics2D)(transform: Transform, fill: Fill, points: Array[Point]): Unit
def fillRect(gc: Graphics2D)(transform: Transform, fill: Fill, width: Double, height: Double): Unit
def strokeCircle(gc: Graphics2D)(transform: Transform, stroke: Stroke, diameter: Double): Unit
def strokeClosedPath(gc: Graphics2D)(transform: Transform, stroke: Stroke, elements: List[PathElement]): Unit
def strokeOpenPath(gc: Graphics2D)(transform: Transform, stroke: Stroke, elements: List[PathElement]): Unit
def strokePolygon(gc: Graphics2D)(transform: Transform, stroke: Stroke, points: Array[Point]): Unit
def strokeRect(gc: Graphics2D)(transform: Transform, stroke: Stroke, width: Double, height: Double): Unit
def text(gc: Graphics2D)(transform: Transform, stroke: Option[Stroke], text: String, font: Font, bounds: Rectangle2D): Unit