area.h

Back to Area

pastel/geometry/

// Description: An aggregate file for area computations
// Documentation: area.txt

#ifndef PASTELGEOMETRY_AREA_H
#define PASTELGEOMETRY_AREA_H

// Area is defined as the (n-1)-dimensional
// volume of the boundary of an object.

#include "pastel/geometry/area/box_area.h"
#include "pastel/geometry/area/sphere_area.h"
#include "pastel/geometry/area/polygon_area.h"

#endif