Code Monkey home page Code Monkey logo

shapetopath's Introduction

ShapeToPath.js

What id does?

  • It transforms an svg shape element (line, rect, circle, ellipse) into a path or an SVG path element.

How it works?

  • It uses pre-defined path templates using the elements attributes to generate the appropreate path.

Usage:


shapeToPath(Element): String

Description : It is used to generate a String path from the given shape.`

Example:

import { shapeToPath } from "ShapeToPath"

const rect = document.querySelector("rect")
let rectPath = shapeToPath(rect)
console.log(rectPath)

shapeToPathElement(Element): SVGPathElement

Description : It is used to generate an SVG path Element from the given shape that has the same attributes and has the new generated SVG path.`

Example:

import { shapeToPathElement } from "ShapeToPath"

const rectShapeElement = document.querySelector("rect")
let rectPathElement = shapeToPathElement(rect)
console.log(rectPathElement)

getPath(shape:String, attributes:Object ): String

Description : It generates a path without needing to pass an element, it takes the shape type as a String and the required attributes and generates a path.`

Example:

import { getPath } from "ShapeToPath"

let path = getPath("rect",{
    x: 5,
    y: 10,
    height: 25,
    width: 35,
    rx: 25
})
console.log(path)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.