gitextract_nydee4um/ ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .travis.yml ├── .vscode/ │ ├── launch.json │ └── settings.json ├── .yarn/ │ ├── plugins/ │ │ └── @yarnpkg/ │ │ └── plugin-interactive-tools.cjs │ └── releases/ │ └── yarn-3.4.1.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__/ │ ├── __snapshots__/ │ │ └── tests.spec.ts.snap │ ├── external-libs/ │ │ └── clipper.js │ ├── pureJs.ts │ ├── tests.spec.ts │ ├── tsconfig.json │ └── utils.ts ├── build/ │ ├── compile-asm.ts │ └── tsconfig.json ├── docs/ │ ├── apiReference/ │ │ ├── clipping/ │ │ │ ├── ClipInput.md │ │ │ ├── ClipParams.md │ │ │ ├── ClipType.md │ │ │ ├── SubjectInput.md │ │ │ └── clipTo.md │ │ ├── index.md │ │ ├── libInit/ │ │ │ ├── NativeClipperLibLoadedFormat.md │ │ │ ├── NativeClipperLibRequestedFormat.md │ │ │ └── loadNativeClipperLibInstanceAsync.md │ │ ├── offsetting/ │ │ │ ├── EndType.md │ │ │ ├── JoinType.md │ │ │ ├── OffsetInput.md │ │ │ ├── OffsetParams.md │ │ │ └── offsetTo.md │ │ └── shared/ │ │ ├── ClipperLibWrapper.md │ │ ├── IntPoint.md │ │ ├── Path.md │ │ ├── Paths.md │ │ ├── PointInPolygonResult.md │ │ ├── PolyFillType.md │ │ ├── PolyNode.md │ │ └── PolyTree.md │ ├── faq/ │ │ └── index.md │ └── overview/ │ └── index.md ├── jest.config.js ├── package.json ├── src/ │ ├── Clipper.ts │ ├── ClipperError.ts │ ├── ClipperOffset.ts │ ├── IntPoint.ts │ ├── IntRect.ts │ ├── Path.ts │ ├── Paths.ts │ ├── PolyNode.ts │ ├── PolyTree.ts │ ├── clipFunctions.ts │ ├── constants.ts │ ├── enums.ts │ ├── functions.ts │ ├── index.ts │ ├── native/ │ │ ├── NativeClipper.ts │ │ ├── NativeClipperBase.ts │ │ ├── NativeClipperLibInstance.ts │ │ ├── NativeClipperOffset.ts │ │ ├── NativeDeletable.ts │ │ ├── NativeIntPoint.ts │ │ ├── NativeIntRect.ts │ │ ├── NativePath.ts │ │ ├── NativePaths.ts │ │ ├── NativePolyNode.ts │ │ ├── NativePolyTree.ts │ │ ├── NativeVector.ts │ │ ├── PathToNativePath.ts │ │ ├── PathsToNativePaths.ts │ │ ├── mem.ts │ │ ├── nativeEnumConversion.ts │ │ └── nativeEnums.ts │ ├── nativeFinalizationRegistry.ts │ ├── offsetFunctions.ts │ └── wasm/ │ ├── binding.hpp │ ├── clipper.cpp │ └── clipper.hpp └── tsconfig.json