UNPKG

@meta2d/core

Version:

@meta2d/core: Powerful, Beautiful, Simple, Open - Web-Based 2D At Its Best .

81 lines 2.21 kB
export * from './rectangle'; export * from './circle'; export * from './svgPath'; export * from './diamond'; export * from './triangle'; export * from './pentagon'; export * from './pentagram'; export * from './hexagon'; export * from './arrow'; export * from './message'; export * from './cloud'; export * from './file'; export * from './cube'; export * from './people'; export * from './line'; export * from './iframe'; export * from './video'; export * from './form'; export * from './sceneContainer'; import { rectangle, square } from './rectangle'; import { circle } from './circle'; import { svgPath } from './svgPath'; import { diamond } from './diamond'; import { triangle, triangleAnchors } from './triangle'; import { pentagon, pentagonAnchors } from './pentagon'; import { pentagram, pentagramAnchors } from './pentagram'; import { hexagon } from './hexagon'; import { leftArrow, rightArrow, twowayArrow } from './arrow'; import { message } from './message'; import { cloud } from './cloud'; import { file } from './file'; // import { cube } from './cube'; import { people } from './people'; import { line } from './line'; import { iframe } from './iframe'; import { video } from './video'; import { gif } from './gif'; import { mindNode, mindNodeAnchors } from './mindNode'; import { mindLine, mindLineAnchors } from './mindLine'; import { form } from './form'; import { sceneContainer } from './sceneContainer'; export function commonPens() { return { rectangle, square, circle, svgPath, diamond, triangle, pentagon, pentagram, hexagon, leftArrow, rightArrow, twowayArrow, message, cloud, file, people, line, iframe, video, gif, mindNode, mindLine, mindNode2: rectangle, form, combine: rectangle, sceneContainer }; } export function commonAnchors() { return { triangle: triangleAnchors, pentagon: pentagonAnchors, pentagram: pentagramAnchors, mindNode: mindNodeAnchors, mindLine: mindLineAnchors, }; } //# sourceMappingURL=index.js.map