Class: Archimate::Svg::Entity::Junction

Inherits:
RectEntity show all
Defined in:
lib/archimate/svg/entity/junction.rb

Instance Attribute Summary

Attributes inherited from BaseEntity

#background_class, #badge, #badge_bounds, #bounds_offset, #child, #entity, #text_bounds

Instance Method Summary collapse

Methods included from Rect

#rect_path

Methods inherited from BaseEntity

#entity_badge, #entity_label, #group_attrs, #layer_background_class, #optional_link, #shape_style, #text_lines, #text_style, #to_svg

Constructor Details

#initialize(child, bounds_offset) ⇒ Junction

Returns a new instance of Junction.



8
9
10
11
# File 'lib/archimate/svg/entity/junction.rb', line 8

def initialize(child, bounds_offset)
  super
  @background_class = "archimate-junction-background"
end

Instance Method Details

#entity_shape(xml, bounds) ⇒ Object



13
14
15
# File 'lib/archimate/svg/entity/junction.rb', line 13

def entity_shape(xml, bounds)
  xml.circle(cx: bounds.left + bounds.width / 2.0, cy: bounds.top + bounds.height / 2.0, r: bounds.width / 2.0, class: background_class, style: shape_style)
end