Adrian Leonhard

Results 20 issues of Adrian Leonhard

Possible implementation for cubic case. Can probably be improved (possibly unstable for as curveP0T approaches 1) ``` likeCurve(curve) { return curve.constructor == BezierCurve && this.p0.like(curve.p0) && this.p1.like(curve.p1) && this.p2.like(curve.p2) &&...

enhancement

If I'm treating `Matrix3` as a homogeneous matrix for 2D coordinates, the equivalent of `Matrix4`'s `from_translation` is missing.

enhancement

I don't know if this is specific to electron... In any case, here's a minimal repro: https://github.com/NaridaL/electron-node-notifier-bug ![image](https://user-images.githubusercontent.com/10828874/82738229-5f3f4c00-9d36-11ea-89e5-56fcf084333e.png) ![image](https://user-images.githubusercontent.com/10828874/82738578-bf36f200-9d38-11ea-89ad-315478e651de.png)

The TS typings currently add stuff to the global scope, they should use something like http://www.typescriptlang.org/docs/handbook/declaration-files/templates/module-function-d-ts.html so they work both in a browser env and when importing them as modules....

enhancement

## Describe the issue I am trying to get kubectl oidc-login to work. According to the docs, `choco install kubelogin` should be enough. However, it also says that `kubectl-oidc_login` needs...

bug

If the POJO has a setter `setFoos(Foo[] foos)`, I'd like the option to generate setter methods in the builder with `withFoos(Foo... foos)`. This would allow for a more fluent creation...

Followup to https://github.com/denoland/deno_registry2/issues/213 I'd submit a PR myself, but I'm unclear on what exactly the usage scenario for the subdirectory is, if separately versioned modules aren't supported.

I'm using a Select prompt, and I'd like to asynchronously update the message to add additional information. Is this possible? I see that choice.message accepts a function, but it's unclear...

question