cotangent_weights_intrinsic
cotangent_weights_intrinsic(l_sq, F)
Builds the cotangent weights (cotangent/2) for each halfedge using only intrinsic information (squared halfedge edge lengths).
The ordering convention for halfedges is the following: [halfedge opposite vertex 0, halfedge opposite vertex 1, halfedge opposite vertex 2]
Parameters:
Name | Type | Description | Default |
---|---|---|---|
l_sq |
(m,3) numpy array
|
squared halfedge lengths as computed by halfedge_lengths_squared |
required |
F |
(m,3) numpy int array
|
face index list of a triangle mesh |
required |
Returns:
Name | Type | Description |
---|---|---|
C |
(m,3) numpy array
|
cotangent weights for each halfedge |
Examples:
TODO
Source code in src/gpytoolbox/cotangent_weights_intrinsic.py
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
|