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

An ellipse element.

Methods

new  

Public Class methods

Create an ellipse with center at cx, cy and radiuses rx and ry.

[Source]

# File lib/taskjuggler/Painter/BasicShapes.rb, line 35
      def initialize(attrs)
        super('ellipse', [ :cx, :cy, :rx, :ry ] + FillAndStrokeAttrs, attrs)
      end

[Validate]