-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
51 lines (38 loc) · 1.41 KB
/
main.c
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
////////////////////////////////////////////////////////////////////////////////
// Rotation, Translation, Skalierung und weitere Vektor-Operationen //
// 18/04/2020 - Entwickelt von Finn Liebner //
////////////////////////////////////////////////////////////////////////////////
#include <math.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
enum {X, Y, Z};
#include "gnuplot.c"
#include "vektor.c"
double p[10][3]; // Stützvektoren
double q[10][3]; // Richtungsvektoren
////////////////////////////////////////////////////////////////////////////////
void main(void)
{
plot_test();
p[0][X] = 0.000; q[0][X] = 1.000;
p[0][Y] = 0.000; q[0][Y] = 0.000;
p[0][Z] = 0.000; q[0][Z] = 0.000;
plot_vkt(p[0], q[0], 255,0,0);
printf(" Vektor (rot): \n");
prt_vektor(p[0], q[0]);
plot_vkt(p[0], q[0], 255,0,0);
rot_vektor(p[0], 0, 0, 90);
rot_vektor(q[0], 0, 0, 90);
printf("\n Vektor nach der Drehung (blau): \n");
prt_vektor(p[0], q[0]);
plot_vkt(p[0], q[0], 0,0,255);
plot_term();
plot_svg();
printf(" Außerdem kann dieses Programm Vektoren Skalieren und Verschieben. Teste dazu mal skl_vektor() und trl_vektor() aus. \n");
}
////////////////////////////////////////////////////////////////////////////////