summaryrefslogtreecommitdiff
path: root/include/common
diff options
context:
space:
mode:
authorpacien2017-12-22 01:53:55 +0100
committerpacien2017-12-22 01:55:25 +0100
commita767c658cb603de9ec9f0577627b9b32cbf82b2b (patch)
tree084b023cf34a60e4cbbc79053723bf23c96fa678 /include/common
parent7af561eccb7b4210e4e8233d53876b7af5607234 (diff)
downloadmorpher-a767c658cb603de9ec9f0577627b9b32cbf82b2b.tar.gz
Simplify and add geom. and matrix utility functions
Signed-off-by: pacien <pacien.trangirard@pacien.net>
Diffstat (limited to 'include/common')
-rw-r--r--include/common/geom.h54
-rw-r--r--include/common/matrix.h51
2 files changed, 54 insertions, 51 deletions
diff --git a/include/common/geom.h b/include/common/geom.h
index a843c76..b3564a5 100644
--- a/include/common/geom.h
+++ b/include/common/geom.h
@@ -38,6 +38,46 @@ typedef struct {
38 CartesianVector origin, target; 38 CartesianVector origin, target;
39} CartesianMapping; 39} CartesianMapping;
40 40
41
42/**
43 * Function: m
44 * Shorthand for an identity mapping.
45 *
46 * Parameters:
47 * x - the x-coordinate
48 * y - the y-coordinate
49 *
50 * Returns:
51 * A cartesian identity mapping
52 */
53CartesianMapping m(int x, int y);
54
55/**
56 * Function: v
57 * Shorthand for a vector.
58 *
59 * Parameters:
60 * x - the x-coordinate
61 * y - the y-coordinate
62 *
63 * Returns:
64 * An integer vector
65 */
66CartesianVector v(int x, int y);
67
68/**
69 * Function: mappings_equals
70 * Compares two cartesian mappings.
71 *
72 * Parameters:
73 * m1 - the first mapping
74 * m2 - the second mapping
75 *
76 * Returns:
77 * T(m1 is equal to m2)
78 */
79bool mappings_equals(CartesianMapping m1, CartesianMapping m2);
80
41/** 81/**
42 * Function: vector_equals 82 * Function: vector_equals
43 * Compares two cartesian vectors. 83 * Compares two cartesian vectors.
@@ -51,4 +91,18 @@ typedef struct {
51 */ 91 */
52bool vector_equals(CartesianVector v1, CartesianVector v2); 92bool vector_equals(CartesianVector v1, CartesianVector v2);
53 93
94/**
95 * Function: triangle_area
96 * Computes the area of a triangle.
97 *
98 * Parameters:
99 * v1 - first vertex
100 * v2 - second vertex
101 * v3 - third vertex
102 *
103 * Returns:
104 * The area of the triangle spawned by the three supplied vertices
105 */
106IntVector triangle_area(CartesianVector v1, CartesianVector v2, CartesianVector v3);
107
54#endif 108#endif
diff --git a/include/common/matrix.h b/include/common/matrix.h
deleted file mode 100644
index fe4a12a..0000000
--- a/include/common/matrix.h
+++ /dev/null
@@ -1,51 +0,0 @@
1#ifndef UPEM_MORPHING_MATRIX
2#define UPEM_MORPHING_MATRIX
3
4/**
5 * File: matrix.h
6 * Matrices representation and useful operations.
7 *
8 * See also:
9 * The film
10 */
11
12#include "geom.h"
13
14/**
15 * Struct: IntSquareMatrix
16 * Represents a square integer matrix.
17 *
18 * Fields:
19 * **elements - NULL-terminated array of element pointers
20 * dim - dimension
21 */
22typedef struct {
23 IntVector **elements;
24 IntVector dim;
25} IntSquareMatrix;
26
27/**
28 * Function: matrix_int_det
29 * Computes and returns the determinant of a square integer matrix.
30 *
31 * Parameters:
32 * *matrix - pointer to input matrix
33 *
34 * Returns:
35 * The integer determinant
36 */
37IntVector matrix_int_det(IntSquareMatrix *matrix);
38
39/**
40 * Function: matrix_reshape
41 * Reshapes a flat vector into a bi-dimensional row pointer array.
42 *
43 * Parameters:
44 * **bi_dim - pointer to the result row array
45 * *flat - flat vector
46 * width - number of elements per row
47 * height - number of rows
48 */
49void matrix_reshape(IntVector **bi_dim, IntVector *flat, int width, int height);
50
51#endif