/**
|
|
* Headerdatei fuer Streckenberechnung
|
|
* Funktiondeklarierung
|
|
*
|
|
* Rainer Hihn
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
/*
|
|
* functions
|
|
*/
|
|
struct point readPoint();
|
|
float distance(struct point point1, struct point point2);
|
|
|
|
/*
|
|
* structs
|
|
*/
|
|
struct point
|
|
{
|
|
float rX;
|
|
float rY;
|
|
float rZ;
|
|
};
|
|
|