Thomas Gorisse

Results 158 comments of Thomas Gorisse

Hi @SimonMarquis, Congrats again for your repo. It greatly inspired me. I add you to the Sceneform contributors list. If you have a little time, could you help us on...

Something like: ```kotlin override fun equals(other: Any?): Boolean { return (other as? Mat4)?.let { it.toFloatArray().zip(this.toFloatArray()) .all { (a, b) -> a.toHalf() == b.toHalf() } } ?: false } ```

Thanks for the clarification. I'll try to implement it mostly like Apache Commons is doing it (https://commons.apache.org/proper/commons-math/javadocs/api-3.6/index.html?org/apache/commons/math3/util/Precision.html) Would you like to add it to kotlin-math or is it out of...

Maybe ;-) Mostly everything is ready but I will try to commit only verified and completely documented files during coming days instead of pushing all and making corrections after.

Hi @issacclee, Actually there is only about 10% of the already done work pushed to the repo. I tried to follow the IO and participate as much as I can...

I hope this repo will be useful. I have discovered so much enjoying things I wouldn't expect doing it that it would be a shame not to share it. Like...

Hi @grassydragon, Yep, more than ever. Actually, I don't completely know if we should do the things in Sceneform or RealityCore. I spend a lot of time making corrections and...

In Sceneform. Cause there are actually 4 classes with an enormous count of boilerplate/unused code wich could be cleaned in 50 lines of code thanks to Kotlin extensions.

@RGregat > Count me in, but except for a few Udemy courses I never programmed in Kotlin. Thanks!!!! You already do a very good job on Sceneform, it will be...

Wow. So much infos at the same time !!! My brain is going to explode with all this things to think about at the same time. So... 1. @RGregat Thanks...