| Function Name | Description |
|---|---|
| XintGeomCalculateNormal | Calculate a normal vector from three points. |
| XintVectorCopy3 | Copy a vector. |
| XintVectorNormalize3 | Normalize a vector. |
void XintGeomCalculateNormal(...)
| XintVector3 | normal | On return, contains normal vector. |
| XintVector3 | p1 | First input point. |
| XintVector3 | p2 | Second input point. |
| XintVector3 | p3 | Third input point. |

void XintVectorCopy3 (...)
| XintVector3 | dest | Destination vector. |
| XintVector3 | src | Source vector. |
void XintVectorNormalize3 (...)
| XintVector3 | dest | Destination vector that has been normalized. |
| XintVector3 | src | Source vector. |