Barycentric Coordinates of a spherical triangle

16 次查看(过去 30 天)
Hello,
If I have a triangle constructed in 2D with the vertices (x1,y1) (x2,y2) (x3,y3) it is straight forward to find the barycentric coordinate of any point P within the triangle using tsearchn or equivalent and then translate this coordinate to any other 2D triangle using barycentricToCartesian.m
However what I would like to do is to relate any point P inside a 2D triangle to a 3D vector n for a point in a spherical triangle mapped onto a unit sphere. I think a method would be to obtain the barycentric coordinates of any point in a spherical triangle to relate the two triangles, but i'm not sure if this exists.
  1 个评论
Sterling Baird
Sterling Baird 2020-7-2
See these two papers:
[1] T. Langer, A. Belyaev, H.-P. Seidel, Spherical barycentric coordinates, Proc. Fourth Eurographics Symp. Geom. Process. (2006) 81–88. http://portal.acm.org/citation.cfm?id=1281957.1281968.
[2] K. Lei, D. Qi, X. Tian, A new coordinate system for constructing spherical grid systems, Appl. Sci. 10 (2020). https://doi.org/10.3390/app10020655.
The first one has the advantage of interpolation for linear precision, the second approach is better suited to defining spherical triangular grids on spheres. Hyperspheres are fair game for the first, and probably for the second too..

请先登录,再进行评论。

回答(1 个)

Anton Semechko
Anton Semechko 2018-7-10
编辑:Anton Semechko 2018-7-10
This can be done in four steps:
1) Compute linear transformation (T) that maps triangle A to its counterpart B on the sphere.
2) Use T to map point of interest Pa in A to B to get Pb=T(Pa)
3) Project Pb onto the sphere to get pb=Pb/norm(Pb)
4) Solve for spherical barycentric coordinates (u,v,w) of pb relative to B. Do to this suppose Q=[q1 q2 q3] is a 3-by-3 matrix containing coordinates of the vertices of B along columns, then p2(:)=Q*[u;v;w]. Note that unlike planar barycentric coordinates which always sum to unity, sum of the spherical barycentric coordinates can exceed one.

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by