Fedor Chelnokov
Fedor Chelnokov
Hello, The function `pointGridSampling` in python returns an object of `VertBitSet` type. You can use `count()` method of it to find the number of samples. If you want the result...
The second parameter in `pointGridSampling` is voxel size (or 3d box size), and the function leaves only one sample per voxel. If you run the function several times, then the...
Recently we introduced new function `pointIterativeSampling` which allows one to get exact number of requested samples.
The issue appears since #1330
In the last release of MeshInspector, one can find anisotropic Offset. Here is an example: a sphere is offset along Y twice more than along X, and along Z twice...
Thanks. At this moment the implementation is located within MeshInspector's tool only. Please give it a try. If everything is ok, we will work on moving it in MeshLib and...
Currently, the algorithm for anisotropic offsetting in MeshInspector works as follows: 1. Perform not-uniform scaling with different factors along X, Y, Z axes, where each factor is inversely proportional to...
There were no changes in this respect recently. As far as I understood, you would like to get offset in one direction (e.g. Z) only. Or even independent offsets in...
> How can I create a new mesh using MeshLib when I know the point coordinates of a polydata and the point IDs of each triangular face? Please try to...
In C++ we have a function for this in `MeshLib/source/MRMesh/MRMeshMeshDistance.h`: ```c++ struct MeshMeshDistanceResult { /// two closest points: from meshes A and B respectively PointOnFace a, b; /// squared distance...