Vuo  2.3.2
VuoMeshUtility.h
Go to the documentation of this file.
1 
10 #ifdef __cplusplus
11 extern "C"
12 {
13 #endif
14 
15 #include "VuoMesh.h"
16 #include "VuoInteger.h"
17 #include "VuoPoint3d.h"
18 #include "VuoPoint4d.h"
19 #include "VuoList_VuoPoint4d.h"
20 #include "VuoList_VuoInteger.h"
21 
26 
31 
36 
41 
46 
52 
56 static inline VuoPoint3d VuoMeshUtility_faceNormal(VuoPoint3d a, VuoPoint3d b, VuoPoint3d c)
57 {
58  return VuoPoint3d_normalize(VuoPoint3d_crossProduct(b - a, c - a));
59 }
60 
61 #ifdef __cplusplus
62 }
63 #endif