dec_d1
dec_d1(F, E_to_he=None)
Builds the DEC d1 operator as described, for example, in Crane et al. 2013. "Digital Geometry Processing with Discrete Exterior Calculus".
The edge labeling in E_to_he follows the convention from Gpytoolbox's
halfedge_edge_map
.
The input mesh must be a manifold mesh.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
F |
(m,3) numpy int array
|
face index list of a triangle mesh |
required |
E_to_he |
(e,2,2) numpy int array, optional (default None)
|
index map from e to corresponding row and col in the list of
all halfedges |
None
|
Returns:
Name | Type | Description |
---|---|---|
d1 |
(m,e) scipy csr_matrix
|
DEC operator d1 |
Examples:
# Mesh in V,F
d1 = gpy.dec_d1(F)
Source code in src/gpytoolbox/dec_d1.py
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 42 43 44 45 46 47 48 49 50 51 52 53 |
|