per_face_normals
per_face_normals(V, F, unit_norm=True)
Vector perpedicular to all faces on a mesh
Computes per face (optionally unit) normal vectors for a triangle mesh.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
V |
(n,d) numpy array
|
vertex list of a triangle mesh |
required |
F |
(m,3) numpy int array
|
face index list of a triangle mesh |
required |
unit_norm |
bool, optional (default True)
|
Whether to normalize each face's normal before outputting |
True
|
Returns:
Name | Type | Description |
---|---|---|
N |
(n,d) numpy double array
|
Matrix of per-face normals |
See Also
per_vertex_normals.
Examples:
TODO
Source code in src/gpytoolbox/per_face_normals.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 54 55 |
|