#include <iostream>
#include "GeoGeneric.h"
#include "CP2D.h"
#include "CV2D.h"
#include "CP4D.h"
Defines | |
#define | MIN(a, b) (((a) < (b)) ? (a) : (b)) |
#define | MAX(a, b) (((a) > (b)) ? (a) : (b)) |
Functions | |
CP2D | MidPoint (const CP2D &Point1, const CP2D &Point2) |
CP2D | Min (const CP2D &Point1, const CP2D &Point2) |
CP2D | Max (const CP2D &Point1, const CP2D &Point2) |
#define MAX | ( | a, | |||
b | ) | (((a) > (b)) ? (a) : (b)) |
#define MIN | ( | a, | |||
b | ) | (((a) < (b)) ? (a) : (b)) |
documentation stuff
Returns the maximum of all components of two points.
Returns the point in the middle between two points.
Returns the minimum of all components of two points.