You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
but get en exception "Failed to find initial simplex shape with non-zero volume. While data appears to be in 4 dimensions, the data is all co-planar (or collinear, co-hyperplanar) and is representable by fewer dimensions."
It's pretty simple triangulation, but why it failed?
When triangulating a cube, you should get 5 or 6 triangles.
Then i was changed one vertex coordinate (-10, -10, -10) to (-10, -10, -9) .
And it worked, but. It get one additional squre shape cell,
But i got six triangle, and one square, i'm confused.
When triangulating a cube, you should get 5 or 6 triangles.
I've run into the same issue of a ConvexHullGenerationException being thrown by the FindInitialPoints() method. It can be replicated in a simpler form as well, for example a simple 2D square will result in the same issue:
[0, 0]
[1, 0]
[1, 1]
[0, 1]
It appears this behaviour was caused by this PR: #34
The issue exists in 1.1.19.927 onwards - 1.1.19.920 is the last version where the exception is not thrown, and the delaunay triangles are returned.
Someone will have to unravel the change to understand exactly where it is going wrong in these cases - hopefully @micampbell may be able to review this at some point if he has time.
I tried to do triangulation of 3d cube.
but get en exception "Failed to find initial simplex shape with non-zero volume. While data appears to be in 4 dimensions, the data is all co-planar (or collinear, co-hyperplanar) and is representable by fewer dimensions."
It's pretty simple triangulation, but why it failed?
When triangulating a cube, you should get 5 or 6 triangles.
Then i was changed one vertex coordinate (-10, -10, -10) to (-10, -10, -9) .
And it worked, but. It get one additional squre shape cell,
But i got six triangle, and one square, i'm confused.
When triangulating a cube, you should get 5 or 6 triangles.
I tried rectangular parallelepiped and get similar result
AssemblyVersion: 1.1.19.1018
The text was updated successfully, but these errors were encountered: