Skip to content

Instantly share code, notes, and snippets.

@ChandrakantThakkarDigiCorp
Last active February 8, 2020 13:52
Show Gist options
  • Save ChandrakantThakkarDigiCorp/8197ee155e387bf12a1042a19b8436a2 to your computer and use it in GitHub Desktop.
Save ChandrakantThakkarDigiCorp/8197ee155e387bf12a1042a19b8436a2 to your computer and use it in GitHub Desktop.
Free Hand Line D3 v4
<html>
<head>
<style>
path {
fill: none;
stroke: tomato;
stroke-dasharray: 5, 5;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<a href="https://stackoverflow.com/users/7430694/chandrakant-thakkar" style="position: absolute;top: 87%;left: 77%;" target="_blank">
<img src="https://stackoverflow.com/users/flair/7430694.png" width="208" height="58" alt="profile for Chandrakant Thakkar at Stack Overflow, Q&amp;A for professional and enthusiast programmers" title="profile for Chandrakant Thakkar at Stack Overflow, Q&amp;A for professional and enthusiast programmers">
</a>
<script>
var width = 960,
height = 500;
var line = d3.line().curve(d3.curveBasis);
var svg = d3
.select("body")
.append("svg")
.attr("width", width)
.attr("height", height)
.call(
d3
.drag()
.container(function(d) {
return this;
})
.on("start", dragStarted)
);
var path = svg.append("path").attr("d",getInitialPath());
svg.append("text")
.attr("x",10)
.attr("y",20)
.text("Drag Mouse Anywhere");
function dragStarted() {
var x0 = d3.event.x,
y0 = d3.event.y;
var d = [
[x0, y0],
[x0, y0]
];
path.datum(d);
d3.event.on("drag", function() {
var x1 = d3.event.x,
y1 = d3.event.y,
dx = x1 - x0,
dy = y1 - y0;
d.push([(x0 = x1), (y0 = y1)]);
path.attr("d", line);
});
}
function getInitialPath() {
return "M152,148L152,148C152,148,152,148,151.83333333333334,148C151.66666666666666,148,151.33333333333334,148,150.33333333333334,148C149.33333333333334,148,147.66666666666666,148,146,148C144.33333333333334,148,142.66666666666666,148,140.5,148C138.33333333333334,148,135.66666666666666,148,132.66666666666666,148C129.66666666666666,148,126.33333333333333,148,122.66666666666667,148C119,148,115,148,111,148C107,148,103,148,99,148C95,148,91,148,87.5,148.66666666666666C84,149.33333333333334,81,150.66666666666666,79,151.66666666666666C77,152.66666666666666,76,153.33333333333334,74.5,154.16666666666666C73,155,71,156,69,157.83333333333334C67,159.66666666666666,65,162.33333333333334,63.333333333333336,165C61.666666666666664,167.66666666666666,60.333333333333336,170.33333333333334,58.833333333333336,173.33333333333334C57.333333333333336,176.33333333333334,55.666666666666664,179.66666666666666,54,182.83333333333334C52.333333333333336,186,50.666666666666664,189,49.166666666666664,192.16666666666666C47.666666666666664,195.33333333333334,46.333333333333336,198.66666666666666,45.5,201.66666666666666C44.666666666666664,204.66666666666666,44.333333333333336,207.33333333333334,44.166666666666664,210C44,212.66666666666666,44,215.33333333333334,44.166666666666664,218.33333333333334C44.333333333333336,221.33333333333334,44.666666666666664,224.66666666666666,45.333333333333336,228.33333333333334C46,232,47,236,48,239.33333333333334C49,242.66666666666666,50,245.33333333333334,50.833333333333336,248.16666666666666C51.666666666666664,251,52.333333333333336,254,53.5,257.1666666666667C54.666666666666664,260.3333333333333,56.333333333333336,263.6666666666667,58.833333333333336,267.8333333333333C61.333333333333336,272,64.66666666666667,277,67.83333333333333,281C71,285,74,288,77.33333333333333,290.6666666666667C80.66666666666667,293.3333333333333,84.33333333333333,295.6666666666667,87.5,297.6666666666667C90.66666666666667,299.6666666666667,93.33333333333333,301.3333333333333,95.83333333333333,302.3333333333333C98.33333333333333,303.3333333333333,100.66666666666667,303.6666666666667,103.16666666666667,304C105.66666666666667,304.3333333333333,108.33333333333333,304.6666666666667,111,304.8333333333333C113.66666666666667,305,116.33333333333333,305,119.16666666666667,305C122,305,125,305,128.5,303.5C132,302,136,299,140.16666666666666,295.8333333333333C144.33333333333334,292.6666666666667,148.66666666666666,289.3333333333333,152.83333333333334,286.3333333333333C157,283.3333333333333,161,280.6666666666667,164.5,278C168,275.3333333333333,171,272.6666666666667,173.83333333333334,269.5C176.66666666666666,266.3333333333333,179.33333333333334,262.6666666666667,182,257.3333333333333C184.66666666666666,252,187.33333333333334,245,189.33333333333334,239.33333333333334C191.33333333333334,233.66666666666666,192.66666666666666,229.33333333333334,193.5,224.33333333333334C194.33333333333334,219.33333333333334,194.66666666666666,213.66666666666666,195.16666666666666,208.16666666666666C195.66666666666666,202.66666666666666,196.33333333333334,197.33333333333334,196.66666666666666,191.83333333333334C197,186.33333333333334,197,180.66666666666666,197.33333333333334,175C197.66666666666666,169.33333333333334,198.33333333333334,163.66666666666666,198.66666666666666,157.83333333333334C199,152,199,146,199,140.33333333333334C199,134.66666666666666,199,129.33333333333334,199,124.16666666666667C199,119,199,114,199,109.33333333333333C199,104.66666666666667,199,100.33333333333333,199,96.66666666666667C199,93,199,90,199,86.83333333333333C199,83.66666666666667,199,80.33333333333333,199,77.66666666666667C199,75,199,73,199,71.16666666666667C199,69.33333333333333,199,67.66666666666667,199,66.5C199,65.33333333333333,199,64.66666666666667,199.16666666666666,64.16666666666667C199.33333333333334,63.666666666666664,199.66666666666666,63.333333333333336,200.16666666666666,63.666666666666664C200.66666666666666,64,201.33333333333334,65,201.66666666666666,65.83333333333333C202,66.66666666666667,202,67.33333333333333,202.33333333333334,69.5C202.66666666666666,71.66666666666667,203.33333333333334,75.33333333333333,204,79C204.66666666666666,82.66666666666667,205.33333333333334,86.33333333333333,206,92C206.66666666666666,97.66666666666667,207.33333333333334,105.33333333333333,208.5,112.5C209.66666666666666,119.66666666666667,211.33333333333334,126.33333333333333,212.83333333333334,133C214.33333333333334,139.66666666666666,215.66666666666666,146.33333333333334,216.66666666666666,153C217.66666666666666,159.66666666666666,218.33333333333334,166.33333333333334,219.5,172.5C220.66666666666666,178.66666666666666,222.33333333333334,184.33333333333334,223.5,190C224.66666666666666,195.66666666666666,225.33333333333334,201.33333333333334,225.83333333333334,206.16666666666666C226.33333333333334,211,226.66666666666666,215,227.16666666666666,218.83333333333334C227.66666666666666,222.66666666666666,228.33333333333334,226.33333333333334,228.66666666666666,229.33333333333334C229,232.33333333333334,229,234.66666666666666,229.33333333333334,237.16666666666666C229.66666666666666,239.66666666666666,230.33333333333334,242.33333333333334,231,244.66666666666666C231.66666666666666,247,232.33333333333334,249,232.83333333333334,251.33333333333334C233.33333333333334,253.66666666666666,233.66666666666666,256.3333333333333,234,259C234.33333333333334,261.6666666666667,234.66666666666666,264.3333333333333,234.83333333333334,266.3333333333333C235,268.3333333333333,235,269.6666666666667,235.33333333333334,271.3333333333333C235.66666666666666,273,236.33333333333334,275,236.66666666666666,276.5C237,278,237,279,237,279.8333333333333C237,280.6666666666667,237,281.3333333333333,237,281.8333333333333C237,282.3333333333333,237,282.6666666666667,236.83333333333334,282.5C236.66666666666666,282.3333333333333,236.33333333333334,281.6666666666667,236,280.5C235.66666666666666,279.3333333333333,235.33333333333334,277.6666666666667,235,275.3333333333333C234.66666666666666,273,234.33333333333334,270,234.16666666666666,266.6666666666667C234,263.3333333333333,234,259.6666666666667,234,256.5C234,253.33333333333334,234,250.66666666666666,234,248C234,245.33333333333334,234,242.66666666666666,234,240.16666666666666C234,237.66666666666666,234,235.33333333333334,234.66666666666666,232.83333333333334C235.33333333333334,230.33333333333334,236.66666666666666,227.66666666666666,237.5,225.5C238.33333333333334,223.33333333333334,238.66666666666666,221.66666666666666,239.16666666666666,220.33333333333334C239.66666666666666,219,240.33333333333334,218,241,217.16666666666666C241.66666666666666,216.33333333333334,242.33333333333334,215.66666666666666,242.83333333333334,215.16666666666666C243.33333333333334,214.66666666666666,243.66666666666666,214.33333333333334,244.5,214.16666666666666C245.33333333333334,214,246.66666666666666,214,247.83333333333334,214C249,214,250,214,250.83333333333334,214.16666666666666C251.66666666666666,214.33333333333334,252.33333333333334,214.66666666666666,253.16666666666666,215.33333333333334C254,216,255,217,256,217.83333333333334C257,218.66666666666666,258,219.33333333333334,259,220.16666666666666C260,221,261,222,262,223.16666666666666C263,224.33333333333334,264,225.66666666666666,265.1666666666667,227.16666666666666C266.3333333333333,228.66666666666666,267.6666666666667,230.33333333333334,269,232.33333333333334C270.3333333333333,234.33333333333334,271.6666666666667,236.66666666666666,272.6666666666667,238.66666666666666C273.6666666666667,240.66666666666666,274.3333333333333,242.33333333333334,275,244C275.6666666666667,245.66666666666666,276.3333333333333,247.33333333333334,276.8333333333333,248.83333333333334C277.3333333333333,250.33333333333334,277.6666666666667,251.66666666666666,278,253.33333333333334C278.3333333333333,255,278.6666666666667,257,279.3333333333333,259.3333333333333C280,261.6666666666667,281,264.3333333333333,281.6666666666667,266.8333333333333C282.3333333333333,269.3333333333333,282.6666666666667,271.6666666666667,283.1666666666667,273.6666666666667C283.6666666666667,275.6666666666667,284.3333333333333,277.3333333333333,285.3333333333333,279.3333333333333C286.3333333333333,281.3333333333333,287.6666666666667,283.6666666666667,288.8333333333333,285.5C290,287.3333333333333,291,288.6666666666667,291.8333333333333,289.8333333333333C292.6666666666667,291,293.3333333333333,292,294.1666666666667,292.6666666666667C295,293.3333333333333,296,293.6666666666667,296.6666666666667,294C297.3333333333333,294.3333333333333,297.6666666666667,294.6666666666667,298,294.8333333333333C298.3333333333333,295,298.6666666666667,295,299.1666666666667,295C299.6666666666667,295,300.3333333333333,295,300.8333333333333,295C301.3333333333333,295,301.6666666666667,295,302.1666666666667,294.5C302.6666666666667,294,303.3333333333333,293,304.1666666666667,290.3333333333333C305,287.6666666666667,306,283.3333333333333,306.8333333333333,278.6666666666667C307.6666666666667,274,308.3333333333333,269,309,264.1666666666667C309.6666666666667,259.3333333333333,310.3333333333333,254.66666666666666,311.5,250.16666666666666C312.6666666666667,245.66666666666666,314.3333333333333,241.33333333333334,315.5,237.33333333333334C316.6666666666667,233.33333333333334,317.3333333333333,229.66666666666666,318,225.83333333333334C318.6666666666667,222,319.3333333333333,218,319.6666666666667,214.33333333333334C320,210.66666666666666,320,207.33333333333334,320,204.33333333333334C320,201.33333333333334,320,198.66666666666666,320,196.66666666666666C320,194.66666666666666,320,193.33333333333334,320,192.16666666666666C320,191,320,190,320.1666666666667,190C320.3333333333333,190,320.6666666666667,191,321.1666666666667,193C321.6666666666667,195,322.3333333333333,198,323.3333333333333,201.5C324.3333333333333,205,325.6666666666667,209,326.6666666666667,213C327.6666666666667,217,328.3333333333333,221,329.5,225.66666666666666C330.6666666666667,230.33333333333334,332.3333333333333,235.66666666666666,333.8333333333333,239.83333333333334C335.3333333333333,244,336.6666666666667,247,337.5,249.16666666666666C338.3333333333333,251.33333333333334,338.6666666666667,252.66666666666666,338.8333333333333,253.83333333333334C339,255,339,256,339.1666666666667,257C339.3333333333333,258,339.6666666666667,259,340.1666666666667,260.1666666666667C340.6666666666667,261.3333333333333,341.3333333333333,262.6666666666667,342,264C342.6666666666667,265.3333333333333,343.3333333333333,266.6666666666667,343.8333333333333,267.5C344.3333333333333,268.3333333333333,344.6666666666667,268.6666666666667,345,269C345.3333333333333,269.3333333333333,345.6666666666667,269.6666666666667,345.8333333333333,269.8333333333333C346,270,346,270,346.3333333333333,269.6666666666667C346.6666666666667,269.3333333333333,347.3333333333333,268.6666666666667,347.8333333333333,266.5C348.3333333333333,264.3333333333333,348.6666666666667,260.6666666666667,349.1666666666667,256.6666666666667C349.6666666666667,252.66666666666666,350.3333333333333,248.33333333333334,351.5,244C352.6666666666667,239.66666666666666,354.3333333333333,235.33333333333334,356,231.66666666666666C357.6666666666667,228,359.3333333333333,225,360.6666666666667,222.16666666666666C362,219.33333333333334,363,216.66666666666666,363.8333333333333,214C364.6666666666667,211.33333333333334,365.3333333333333,208.66666666666666,366,206.5C366.6666666666667,204.33333333333334,367.3333333333333,202.66666666666666,368.5,200.66666666666666C369.6666666666667,198.66666666666666,371.3333333333333,196.33333333333334,372.5,194.16666666666666C373.6666666666667,192,374.3333333333333,190,375.5,188.16666666666666C376.6666666666667,186.33333333333334,378.3333333333333,184.66666666666666,379.8333333333333,183.16666666666666C381.3333333333333,181.66666666666666,382.6666666666667,180.33333333333334,384.1666666666667,179.33333333333334C385.6666666666667,178.33333333333334,387.3333333333333,177.66666666666666,389,177.33333333333334C390.6666666666667,177,392.3333333333333,177,394,177.33333333333334C395.6666666666667,177.66666666666666,397.3333333333333,178.33333333333334,398.5,179.16666666666666C399.6666666666667,180,400.3333333333333,181,401,182.33333333333334C401.6666666666667,183.66666666666666,402.3333333333333,185.33333333333334,403,187.16666666666666C403.6666666666667,189,404.3333333333333,191,405.3333333333333,193.33333333333334C406.3333333333333,195.66666666666666,407.6666666666667,198.33333333333334,408.8333333333333,201C410,203.66666666666666,411,206.33333333333334,411.6666666666667,209C412.3333333333333,211.66666666666666,412.6666666666667,214.33333333333334,412.8333333333333,216.83333333333334C413,219.33333333333334,413,221.66666666666666,413.1666666666667,224C413.3333333333333,226.33333333333334,413.6666666666667,228.66666666666666,414,230.33333333333334C414.3333333333333,232,414.6666666666667,233,414.8333333333333,234C415,235,415,236,415,236.66666666666666C415,237.33333333333334,415,237.66666666666666,414.8333333333333,238C414.6666666666667,238.33333333333334,414.3333333333333,238.66666666666666,414,238.83333333333334C413.6666666666667,239,413.3333333333333,239,412.8333333333333,238.5C412.3333333333333,238,411.6666666666667,237,411.3333333333333,235C411,233,411,230,411,226.83333333333334C411,223.66666666666666,411,220.33333333333334,411,217.16666666666666C411,214,411,211,411,207.83333333333334C411,204.66666666666666,411,201.33333333333334,411.1666666666667,198C411.3333333333333,194.66666666666666,411.6666666666667,191.33333333333334,412.8333333333333,187.83333333333334C414,184.33333333333334,416,180.66666666666666,417.6666666666667,178.33333333333334C419.3333333333333,176,420.6666666666667,175,421.8333333333333,174C423,173,424,172,425,171.33333333333334C426,170.66666666666666,427,170.33333333333334,427.6666666666667,170.16666666666666C428.3333333333333,170,428.6666666666667,170,429,170C429.3333333333333,170,429.6666666666667,170,430.3333333333333,170C431,170,432,170,433.1666666666667,170.5C434.3333333333333,171,435.6666666666667,172,436.8333333333333,173.16666666666666C438,174.33333333333334,439,175.66666666666666,439.6666666666667,176.83333333333334C440.3333333333333,178,440.6666666666667,179,441.5,181C442.3333333333333,183,443.6666666666667,186,445,189C446.3333333333333,192,447.6666666666667,195,448.6666666666667,197.83333333333334C449.6666666666667,200.66666666666666,450.3333333333333,203.33333333333334,451.1666666666667,206.33333333333334C452,209.33333333333334,453,212.66666666666666,453.8333333333333,215.83333333333334C454.6666666666667,219,455.3333333333333,222,456.1666666666667,224.83333333333334C457,227.66666666666666,458,230.33333333333334,459.3333333333333,233.16666666666666C460.6666666666667,236,462.3333333333333,239,463.5,241.5C464.6666666666667,244,465.3333333333333,246,466.1666666666667,247.5C467,249,468,250,468.8333333333333,250.66666666666666C469.6666666666667,251.33333333333334,470.3333333333333,251.66666666666666,470.8333333333333,251.5C471.3333333333333,251.33333333333334,471.6666666666667,250.66666666666666,471.8333333333333,250C472,249.33333333333334,472,248.66666666666666,472,245.83333333333334C472,243,472,238,472.5,232.66666666666666C473,227.33333333333334,474,221.66666666666666,474.8333333333333,215.33333333333334C475.6666666666667,209,476.3333333333333,202,476.6666666666667,195C477,188,477,181,477,173.83333333333334C477,166.66666666666666,477,159.33333333333334,476.5,153C476,146.66666666666666,475,141.33333333333334,473.5,135.5C472,129.66666666666666,470,123.33333333333333,468.5,117.66666666666667C467,112,466,107,465.1666666666667,102.16666666666667C464.3333333333333,97.33333333333333,463.6666666666667,92.66666666666667,463,88.16666666666667C462.3333333333333,83.66666666666667,461.6666666666667,79.33333333333333,461.3333333333333,75.83333333333333C461,72.33333333333333,461,69.66666666666667,460.8333333333333,67.83333333333333C460.6666666666667,66,460.3333333333333,65,460.1666666666667,64.66666666666667C460,64.33333333333333,460,64.66666666666667,460,65.66666666666667C460,66.66666666666667,460,68.33333333333333,460.1666666666667,70.33333333333333C460.3333333333333,72.33333333333333,460.6666666666667,74.66666666666667,461.3333333333333,79C462,83.33333333333333,463,89.66666666666667,464.1666666666667,95C465.3333333333333,100.33333333333333,466.6666666666667,104.66666666666667,468.1666666666667,109.16666666666667C469.6666666666667,113.66666666666667,471.3333333333333,118.33333333333333,472.6666666666667,122.66666666666667C474,127,475,131,476.3333333333333,135.16666666666666C477.6666666666667,139.33333333333334,479.3333333333333,143.66666666666666,481,147.83333333333334C482.6666666666667,152,484.3333333333333,156,485.8333333333333,159.83333333333334C487.3333333333333,163.66666666666666,488.6666666666667,167.33333333333334,490,171C491.3333333333333,174.66666666666666,492.6666666666667,178.33333333333334,493.8333333333333,181.66666666666666C495,185,496,188,497,190.5C498,193,499,195,499.8333333333333,196.83333333333334C500.6666666666667,198.66666666666666,501.3333333333333,200.33333333333334,502,201.66666666666666C502.6666666666667,203,503.3333333333333,204,504,205.16666666666666C504.6666666666667,206.33333333333334,505.3333333333333,207.66666666666666,506.3333333333333,209C507.3333333333333,210.33333333333334,508.6666666666667,211.66666666666666,509.8333333333333,212.83333333333334C511,214,512,215,512.8333333333334,215.5C513.6666666666666,216,514.3333333333334,216,515.1666666666666,216C516,216,517,216,517.6666666666666,215.66666666666666C518.3333333333334,215.33333333333334,518.6666666666666,214.66666666666666,518.8333333333334,214C519,213.33333333333334,519,212.66666666666666,519.1666666666666,210.5C519.3333333333334,208.33333333333334,519.6666666666666,204.66666666666666,520.1666666666666,200.5C520.6666666666666,196.33333333333334,521.3333333333334,191.66666666666666,522,186.83333333333334C522.6666666666666,182,523.3333333333334,177,523.6666666666666,172C524,167,524,162,524.1666666666666,158.16666666666666C524.3333333333334,154.33333333333334,524.6666666666666,151.66666666666666,524.8333333333334,149.33333333333334C525,147,525,145,525,143.5C525,142,525,141,524.8333333333334,140.16666666666666C524.6666666666666,139.33333333333334,524.3333333333334,138.66666666666666,524.1666666666666,138.16666666666666C524,137.66666666666666,524,137.33333333333334,524.3333333333334,137.66666666666666C524.6666666666666,138,525.3333333333334,139,526.3333333333334,140.66666666666666C527.3333333333334,142.33333333333334,528.6666666666666,144.66666666666666,530.1666666666666,147.16666666666666C531.6666666666666,149.66666666666666,533.3333333333334,152.33333333333334,534.6666666666666,155C536,157.66666666666666,537,160.33333333333334,538.1666666666666,162.66666666666666C539.3333333333334,165,540.6666666666666,167,541.8333333333334,168.5C543,170,544,171,545.1666666666666,172.5C546.3333333333334,174,547.6666666666666,176,548.8333333333334,177.5C550,179,551,180,551.6666666666666,180.66666666666666C552.3333333333334,181.33333333333334,552.6666666666666,181.66666666666666,553,182.16666666666666C553.3333333333334,182.66666666666666,553.6666666666666,183.33333333333334,554.3333333333334,184.16666666666666C555,185,556,186,556.6666666666666,186.5C557.3333333333334,187,557.6666666666666,187,558,187.16666666666666C558.3333333333334,187.33333333333334,558.6666666666666,187.66666666666666,559,188C559.3333333333334,188.33333333333334,559.6666666666666,188.66666666666666,560,188.83333333333334C560.3333333333334,189,560.6666666666666,189,561,189C561.3333333333334,189,561.6666666666666,189,562,189C562.3333333333334,189,562.6666666666666,189,563.1666666666666,189C563.6666666666666,189,564.3333333333334,189,565.1666666666666,188.66666666666666C566,188.33333333333334,567,187.66666666666666,568.3333333333334,187C569.6666666666666,186.33333333333334,571.3333333333334,185.66666666666666,573,184.83333333333334C574.6666666666666,184,576.3333333333334,183,577.8333333333334,182.33333333333334C579.3333333333334,181.66666666666666,580.6666666666666,181.33333333333334,582,180.66666666666666C583.3333333333334,180,584.6666666666666,179,585.8333333333334,178.33333333333334C587,177.66666666666666,588,177.33333333333334,589.1666666666666,176.66666666666666C590.3333333333334,176,591.6666666666666,175,593,174.16666666666666C594.3333333333334,173.33333333333334,595.6666666666666,172.66666666666666,597.3333333333334,171.5C599,170.33333333333334,601,168.66666666666666,602.3333333333334,167.33333333333334C603.6666666666666,166,604.3333333333334,165,605.1666666666666,164C606,163,607,162,607.6666666666666,161C608.3333333333334,160,608.6666666666666,159,609.1666666666666,158.16666666666666C609.6666666666666,157.33333333333334,610.3333333333334,156.66666666666666,610.6666666666666,156C611,155.33333333333334,611,154.66666666666666,611,153.66666666666666C611,152.66666666666666,611,151.33333333333334,611,150.33333333333334C611,149.33333333333334,611,148.66666666666666,611.1666666666666,147.83333333333334C611.3333333333334,147,611.6666666666666,146,611.8333333333334,145C612,144,612,143,612,142.16666666666666C612,141.33333333333334,612,140.66666666666666,612,140C612,139.33333333333334,612,138.66666666666666,612,137.83333333333334C612,137,612,136,612,135.16666666666666C612,134.33333333333334,612,133.66666666666666,611.8333333333334,133C611.6666666666666,132.33333333333334,611.3333333333334,131.66666666666666,611.1666666666666,131.16666666666666C611,130.66666666666666,611,130.33333333333334,610.8333333333334,129.83333333333334C610.6666666666666,129.33333333333334,610.3333333333334,128.66666666666666,610,128C609.6666666666666,127.33333333333333,609.3333333333334,126.66666666666667,609.1666666666666,126.16666666666667C609,125.66666666666667,609,125.33333333333333,608.6666666666666,125C608.3333333333334,124.66666666666667,607.6666666666666,124.33333333333333,607.3333333333334,124.16666666666667L607,124";
}
</script>
</body>
</html>
MIT License
Copyright (c) [2020] [Chandrakant Thakkar]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment