#include <math.h>
#include <gandalf/linalg/2vector.h>
#include <gandalf/linalg/3vector.h>
#include <gandalf/common/misc_defs.h>
#include <gandalf/common/misc_error.h>
#include <string.h>
#include <gandalf/common/endian_io.h>
Functions | |
Gan_Bool | gan_vec3_print (const Gan_Vector3 *p, const char *prefix, int indent, const char *fmt) |
Print fixed size vector to standard output. | |
Gan_Bool | gan_vec3_fwrite (FILE *fp, const Gan_Vector3 *p, gan_uint32 magic_number) |
Write fixed size vector to file stream. | |
Gan_Bool | gan_vec3_fread (FILE *fp, Gan_Vector3 *p, gan_uint32 *magic_number) |
Read fixed size vector from file stream. | |
Gan_Vector3 | gan_vec3_zero_s (void) |
Set fixed size vector to zero. | |
Gan_Vector3 | gan_vec3_copy_s (const Gan_Vector3 *x) |
Return a copy of fixed size vector. | |
Gan_Vector3 | gan_vec3_scale_s (const Gan_Vector3 *x, const double a) |
Scale fixed size vector. | |
Gan_Vector3 | gan_vec3_divide_s (const Gan_Vector3 *x, const double a) |
Divide fixed size vector by scalar. | |
Gan_Vector3 | gan_vec3_negate_s (const Gan_Vector3 *x) |
Negate fixed size vector. | |
Gan_Vector3 * | gan_vec3_unit_q (Gan_Vector3 *x, Gan_Vector3 *y) |
Scale matrix to unit norm. | |
Gan_Vector3 | gan_vec3_unit_s (const Gan_Vector3 *x) |
Scale matrix to unit norm. | |
Gan_Vector3 | gan_vec3_add_s (const Gan_Vector3 *x, const Gan_Vector3 *y) |
Add two fixed size vectors. | |
Gan_Vector3 | gan_vec3_sub_s (const Gan_Vector3 *x, const Gan_Vector3 *y) |
Subtract two fixed size vectors. | |
double | gan_vec3_dot_s (const Gan_Vector3 *p, const Gan_Vector3 *q) |
Dot product of fixed size vectors. | |
double | gan_vec3_sqrlen_s (const Gan_Vector3 *p) |
Returns sum of squares of vector elements. | |
Gan_Vector3 | gan_vec3_from_vec_s (const Gan_Vector *x) |
Convert generic rectangular vector to fixed size vector structure. | |
Gan_Bool | gan_vec3_fprint (FILE *fp, const Gan_Vector3 *p, const char *prefix, int indent, const char *fmt) |
Print 3-vector to file. | |
Gan_Bool | gan_vec3_fscanf (FILE *fp, Gan_Vector3 *p, char *prefix, int prefix_len) |
Read 3-vector from file. | |
Gan_Vector3 | gan_vec3_fill_s (double X, double Y, double Z) |
Return 3-vector filled with values. | |
Gan_Vector3 | gan_vec3_cross_s (const Gan_Vector3 *p, const Gan_Vector3 *q) |
Return the vector product of two 3-vectors. | |
Gan_Vector2 | gan_vec3_get_v2t_s (const Gan_Vector3 *p) |
Extract top 2-vector part of 3-vector. | |
Gan_Vector3 | gan_vec3_set_parts_s (const Gan_Vector2 *q, double s) |
Build 3-vector from 2-vector and scalar. | |
Gan_Vector3 * | gan_vec3_from_vec_q (const Gan_Vector *x, Gan_Vector3 *a) |
Convert generic vector to 3-vector structure. |
Part of: Gandalf Library