José Pereda

Results 245 comments of José Pereda

``` org.openjfx javafx-maven-plugin 0.0.8 --add-exports=org.fxyz3d.core/org.fxyz3d.shapes.primitives.helper.delaunay=ALL-UNNAMED ... ```

I've put together this quick test, on how you can create a MeshView out of a Delaunay triangulation from a set of 3D points: ``` import javafx.application.Application; import javafx.scene.Group; import...

Sorting has some effects... I've added `Collections.shuffle(result);`, and the mesh is the visually similar, the triangulation is different: initial order ![image](https://user-images.githubusercontent.com/2043230/150639183-644d2173-461a-4ce4-b252-42a19ab43536.png) shuffled ![image](https://user-images.githubusercontent.com/2043230/150639171-d3b629c1-29ee-47b2-990d-f07be2512ae9.png)

I'm doing `x, z, y`, seems to work better. [DelaunayTest.java.txt](https://github.com/FXyz/FXyz/files/7918693/DelaunayTest.java.txt)

Before we had the importers, when FXyz was not published to Bintray, they added the FXyz classes to JCSG. But when it was published, they added the dependency and removed...

I can reproduce the issue from the FXyz-Samples: ``` text AA Exception in thread "JavaFX Application Thread" java.lang.IndexOutOfBoundsException: Index 1 out of bounds for length 1 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)...

The issue comes from the fact that the 'AA' path doesn't have a separation between the two 'A', and in the first call to Text3DHelper with the full string, there...

Thanks for the report. In the meantime, could you try adding a partial plist to your project instead of the full plist? Like in here: https://github.com/gluonhq/hello-gluon-ci/blob/master/src/main/resources/META-INF/substrate/ios/Partial-Info.plist

Good that it works for now. Default key-values have been working so far until now, but Apple is always pushing... or maybe it was a picky reviewer? Usually there is...

Ok, that doesn't seem to come from a new policy. I've just found this old [post](https://medium.com/cr8resume/revise-the-permission-modal-alert-to-specify-why-the-app-is-requesting-access-to-the-users-location-737df30baba9) with the same comment, so it looks like maybe having a more descriptive reason,...