BadIdeaException

Results 18 issues of BadIdeaException

I've noticed I need to mark module definitions as belonging to themselves, i.e. ``` @ngdoc module @name MyModule @module MyModule ``` or I will get error messages saying `No MyModule...

Although cloning objects with private ('hash name') properties works, any subsequent method calls that access such a property will produce a `TypeError` along the lines of `Cannot write private member...

I can't import fetch-mock using NodeJS 17.6.0 and fetch-mock 9.11.0. The following minimal example `index.mjs`: ``` import fetchMock from 'fetch-mock'; ``` `package.json`: ```{ "main": "index.js", "dependencies": { "fetch-mock": "^9.11.0", "node-fetch":...

### Vagrant version Vagrant 2.2.19 ### Host operating system Ubuntu 21.10 `uname -a` on the host: `Linux Laptop 5.13.0-30-generic #33-Ubuntu SMP Fri Feb 4 17:03:31 UTC 2022 x86_64 x86_64 x86_64...

synced-folders/general
guest/ubuntu
host/ubuntu

With the below polygons, subtracting S from T creates a degenerate result polygon: Instead of splitting the result into two polygons at vertex 3, it creates a single polygon with...

``` const polyk = require("polyk") const vertices = [ 1, 1, 5, 5, 5, 0, 4, 2 ] const [ s1, s2 ] = [ 0, 2 ] const [...

## *What* is wrong? As per the [installation instructions](https://github.com/gpujs/gpu.js#installation): > On Linux, ensure you have the correct header files installed: sudo apt install mesa-common-dev libxi-dev (adjust for your distribution) >...

I would expect the following to pass, but it doesn't: ``` chai.expect([ [1], [2] ]).to.deep.include.oneOf([ [1], [2] ]); ``` I think this is related to #1241, but was under the...

bug

I am using this on production data to perform pairwise difference operations on polygons, and am getting a lot of errors ("unable to complete output ring") when the two polygons...

I understand the necessity for epsilon in floating-point comparisons, but is there some geometric interpretation to it? Something like "the minimum edge length to not cause errors is `x *...