Forrest O.

Results 225 comments of Forrest O.

Is anybody out there?

It seems like cached-commons isn't maintained, which is a shame. It was a good idea.

FWIW, here's how I implemented angular constraints for another verlet lib: https://github.com/softfab/tshirt/blob/master/src/verlet-constraint-angle-2d.js

I have made good progress with this: http://meemoo.org/dataflow/ I have tried to separate it so that I can call render on any item multiple times. That means putting the append...

Thanks! And thanks for the great library... I knew that it was just a matter of time before somebody made a good one. Meemoo is all about tying these libraries...

Oh, thank you. I might have more issues, but that is one of them (trying to recreate gif on right, and rotation is 😕) https://codepen.io/forresto/pen/YbMQXj?editors=0010 Edit: fixed with 👇 .

I found this workaround, to set a query from the "outside" of the custom element: ```js const pickerEl = document.querySelector("em-emoji-picker"); const pickerInputEl = pickerEl.shadowRoot.querySelector("input[type=search]"); pickerInputEl.value = "heart"; pickerInputEl.dispatchEvent(new Event('input')); ```

See also Glitch.com... this starter made it really easy to give a-frame a spin: https://glitch.com/~aframe

Hey @raydog 👋! I found something similar (?) with `expandPaths`... starting with: Expanding by `2` has some missing segments: Interestingly, expanding by `2.0001` fixes the broken bits: Live demo: https://observablehq.com/@forresto/maker-js-svg-path-expand

Here's a path that fails with `distance = 10`, but works with `5`: ``` "M221.59 49.6C245.93 49.6 259.93 65 259.93 79.5C259.93 81.8869 259.8 84.4147 259.305 87H277.002L282.34 42.8C285.43 17.2 301.46 0...