Barycentric Coordinates of a spherical triangle

17 visualizaciones (últimos 30 días)
Alec Day
Alec Day el 10 de Jul. de 2018
Comentada: Sterling Baird el 2 de Jul. de 2020
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 comentario
Sterling Baird
Sterling Baird el 2 de Jul. de 2020
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..

Iniciar sesión para comentar.

Respuestas (1)

Anton Semechko
Anton Semechko el 10 de Jul. de 2018
Editada: Anton Semechko el 10 de Jul. de 2018
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.

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by