Raphaël Morineau

Results 57 comments of Raphaël Morineau

Another variant, bit more "functional" : ```js Object.values(models) .filter(model => typeof model.associate === 'function') .forEach(model => model.associate(models)); ```

Hello I've been working on a Typescript version of this repo (intending to make a PR once done) It is still WIP but i refactored a few things already, including...

@h-ikeda how do you constrain the controls to the domElement only ? ie the line `const controls = new OrbitControls(cmr, domElement)`, should be initialized with a reference to the canvas...

> umm, I have currently no ideas to load objects asynchronously. Vue's computed property does not support promise. How about using [vue-async-computed](https://github.com/foxbenjaminfox/vue-async-computed) ? We are looking for a way to...

It works "partially", ie ok in basic html integration, but not in a Vue environment. Check [vue-async-computed issue#25](https://github.com/foxbenjaminfox/vue-async-computed/issues/25#issuecomment-491044610)

Setting recursivity is actually wrong : all i want is the nearest face **from the model**. Recursivity just hit first the AxesHelper, then the grid, then ground, never the model....

I were searching as well some documentation about mixing crawlers for my usecase : Is it possible to use Apify for : 1. grab a static list of URLs to...

In that regard, i'm interested in how to integrate : - HTTP2 - using Cache API (service worker ?) especially regarding compatibility with Safari

I think the new Material-UI has now all the functionalities superSelectField were adding. Check their Selects Demos. Only missing feature is Autocomplete, which they seem to delegate to MUI-downshift. As...