\( \newcommand{\E}{\mathrm{E}} \) \( \newcommand{\A}{\mathrm{A}} \) \( \newcommand{\R}{\mathrm{R}} \) \( \newcommand{\N}{\mathrm{N}} \) \( \newcommand{\Q}{\mathrm{Q}} \) \( \newcommand{\Z}{\mathrm{Z}} \) \( \def\ccSum #1#2#3{ \sum_{#1}^{#2}{#3} } \def\ccProd #1#2#3{ \sum_{#1}^{#2}{#3} }\)
CGAL 4.8.2 - Kinetic Data Structures
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
CGAL::Kinetic::Enclosing_box_2< Traits > Class Template Reference

#include <CGAL/Kinetic/Enclosing_box_2.h>

Definition

The class Kinetic::Enclosing_box_2 keeps the points in the simulation inside of a box.

Whenever the points come close to the wall of the box they bounce off of the wall.

Note that, in general, points hit the wall of the box at times which are not easily represented by standard (rational) number types. The resulting trajectories would also have non-rational coefficients, complicating and slowing the simulation. In order to handle this, the Kinetic::Enclosing_box_2 bounces the points at the nearest easily representable time before the point would leave the box.

Types

typedef unspecified_type NT
 The number type used to represent the walls of the box and perform calculations. More...
 

Creation

 Enclosing_box_2 (Traits, NT xmin, NT xmax, NT ymin, NT ymax)
 This constructs a bounding box with the dimensions specified by the last 4 arguments. More...
 

Member Typedef Documentation

template<typename Traits >
typedef unspecified_type CGAL::Kinetic::Enclosing_box_2< Traits >::NT

The number type used to represent the walls of the box and perform calculations.

Generally this is Traits::NT.

Constructor & Destructor Documentation

template<typename Traits >
CGAL::Kinetic::Enclosing_box_2< Traits >::Enclosing_box_2 ( Traits  ,
NT  xmin,
NT  xmax,
NT  ymin,
NT  ymax 
)

This constructs a bounding box with the dimensions specified by the last 4 arguments.

They are optional and will take the values \( \pm\) 10 if omitted.