Definition in file vm.c.
#include <bpm/bpm_orbit.h>
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
Include dependency graph for vm.c:
Go to the source code of this file.
Functions | |
void | v_copy (struct v3 *v1, struct v3 *v2) |
double | v_mag (struct v3 *v1) |
void | v_scale (struct v3 *v1, double dscale) |
void | v_norm (struct v3 *v1) |
void | v_matmult (struct m33 *m1, struct v3 *v1) |
void | v_add (struct v3 *v1, struct v3 *v2) |
void | v_sub (struct v3 *v1, struct v3 *v2) |
double | v_dot (struct v3 *v1, struct v3 *v2) |
void | v_cross (struct v3 *v1, struct v3 *v2) |
void | v_print (struct v3 *v1) |
void | m_rotmat (struct m33 *m1, double alpha, double beta, double gamma) |
void | m_matmult (struct m33 *m, struct m33 *m1, struct m33 *m2) |
void | m_matadd (struct m33 *m1, struct m33 *m2) |
void | m_print (struct m33 *m1) |