fill-path
v1.0.11
Published
Vector based fill tool (like floodfill)
Downloads
102
Maintainers
Readme
Fill Path
Vector based fill tool (like floodfill) build with Clipper

Usage
Include fillPath in your project. fillPath accepts two arguments, paths and point.
fillPath( Paths, Point, [ { LineWidth = 1.0, Scale = 10.0, MiterLimit = 2.0, FillOffset = 'center' } ] );
Paths = [...[...Point];
Point = { x: Number, y: Number };
LineWidth = Float;
Scale = Float;
MiterLimit = Float;
FillOffset = String;Note: the Point argument gets rounded because Clipper needs IntPoint for polygon collision.
Include fill-path
Using JSPM
import fillPath from 'Doodle3D/fill-path';Using NPM
const fillPath = require('fill-path');Example code
const paths = [rect(0, 0, 30, 30), rect(10, 10, 10, 10)];
const result = fillPath(paths, { x: 5, y: 5 });
// result = [ [
// { x: 1, y: 1 },
// { x: 1, y: 29 },
// { x: 29, y: 29 },
// { x: 29, y: 1 }
// ], [
// { x: 21, y: 10 },
// { x: 21, y: 20 },
// { x: 20, y: 21 },
// { x: 10, y: 21 },
// { x: 9, y: 20 },
// { x: 9, y: 10 },
// { x: 10, y: 10 },
// { x: 10, y: 9 },
// { x: 20, y: 9 }
// ] ]
function rect(x, y, w, h) {
return [
{ x, y },
{ x: w + x, y },
{ x: w + x, y: h + y },
{ x, y: h + y },
{ x, y }
];
}Installation
Using NPM
npm install fill-pathusing JSPM
jspm install github:Doodle3D/fill-pathClone Project
git clone [email protected]:Doodle3D/fill-path.git
cd fill-path
npm install
jspm installTest
npm run testExample
npm run example