UNPKG

basicprimitives

Version:

Basic Primitives Diagrams for JavaScript - data visualization components library that implements organizational chart and multi-parent dependency diagrams, contains implementations of JavaScript Controls and PDF rendering plugins.

12 lines (9 loc) 279 B
import { SegmentType } from '../../enums'; export default function DotSegment(x, y, width, height, cornerRadius) { this.segmentType = SegmentType.Dot; this.x = x; this.y = y; this.width = width; this.height = height; this.cornerRadius = cornerRadius; };