summaryrefslogtreecommitdiff
path: root/include/vec3.h
blob: edd8ecdf35ac880a3dbddc2e131bc371614afc2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/* Copyright 2015 The ChromiumOS Authors
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Header file for common math functions. */
#ifndef __CROS_EC_VEC_3_H
#define __CROS_EC_VEC_3_H

#include "math_util.h"

typedef float floatv3_t[3];
typedef fp_t fpv3_t[3];

/**
 * Initialized a vector to all 0.0f.
 *
 * @param v Pointer to the vector that will be initialized.
 */
void fpv3_zero(fpv3_t v);

/**
 * Initialize a vector.
 *
 * @param v Pointer to the vector that will be initialized.
 * @param x The value to use for the X component of v.
 * @param y The value to use for the Y component of v.
 * @param z The value to use for the Z component of v.
 */
void fpv3_init(fpv3_t v, fp_t x, fp_t y, fp_t z);

/**
 * Multiply components of the vector by a scalar.
 *
 * @param v Pointer to the vector that is modified.
 * @param c Scalar value to multiply v by.
 */
void fpv3_scalar_mul(fpv3_t v, fp_t c);

/**
 * Subtract b from a and save the result.
 *
 * @param out Pointer to the vector that will be written to.
 * @param a Pointer to the vector that is being subtracted from.
 * @param b Pointer to the vector that is being subtracted.
 */
void fpv3_sub(fpv3_t out, const fpv3_t a, const fpv3_t b);

/**
 * Adds a and b then save the result.
 *
 * @param out Pointer to the vector that will be written to.
 * @param a Pointer to the first vector being added.
 * @param b Pointer to the second vector being added.
 */
void fpv3_add(fpv3_t out, const fpv3_t a, const fpv3_t b);

/**
 * Perform the dot product of two vectors.
 *
 * @param v Pointer to the first vector.
 * @param w Pointer to the second vector.
 * @return The dot product of v and w.
 */
fp_t fpv3_dot(const fpv3_t v, const fpv3_t w);

/**
 * Compute the length^2 of a vector.
 *
 * @param v Pointer to the vector in question.
 * @return The length^2 of the vector.
 */
fp_t fpv3_norm_squared(const fpv3_t v);

/**
 * Compute the length of a vector.
 *
 * @param v Pointer to the vector in question.
 * @return The length of the vector.
 */
fp_t fpv3_norm(const fpv3_t v);

#endif  /* __CROS_EC_VEC_3_H */