Class TaskJuggler::Painter::Circle
In: lib/taskjuggler/Painter/BasicShapes.rb
Parent: Element

A circle element.

Methods

new  

Public Class methods

Create a circle with center at cx, cy and radius r.

[Source]

# File lib/taskjuggler/Painter/BasicShapes.rb, line 25
      def initialize(attrs)
        super('circle', [ :cx, :cy, :r ] + FillAndStrokeAttrs, attrs)
      end

[Validate]