MeshKit
1.0
|
#include <iostream>
#include <math.h>
Go to the source code of this file.
Functions | |
double | dot_product (double vect0[], double vect1[]) |
void | cross_product (double vect0[], double vect1[], double vect2[]) |
double | dist_between_verts (double coords0[], double coords1[]) |
double | point_edge_dist (double a[], double b[], double c[]) |
int | main () |
void cross_product | ( | double | vect0[], |
double | vect1[], | ||
double | vect2[] | ||
) |
Definition at line 8 of file test_point_edge_dist.cpp.
double dist_between_verts | ( | double | coords0[], |
double | coords1[] | ||
) |
Definition at line 14 of file test_point_edge_dist.cpp.
double dot_product | ( | double | vect0[], |
double | vect1[] | ||
) |
Definition at line 4 of file test_point_edge_dist.cpp.
int main | ( | ) |
Definition at line 53 of file test_point_edge_dist.cpp.
double point_edge_dist | ( | double | a[], |
double | b[], | ||
double | c[] | ||
) |
Definition at line 21 of file test_point_edge_dist.cpp.