Field3D
Interval Struct Reference

Represents a single integration interval. The interval is assumed to be inclusive, i.e. [t0,t1]. More...

#include <Types.h>

Public Member Functions

 Interval (double start, double end, double step)
 Default constructor. More...
 

Public Attributes

double stepLength
 The world space step length that is reasonable to use for the given interval. More...
 
double t0
 The start of the interval (inclusive) More...
 
double t1
 The end of the interval (inclusive) More...
 

Detailed Description

Represents a single integration interval. The interval is assumed to be inclusive, i.e. [t0,t1].

Definition at line 64 of file Types.h.

Constructor & Destructor Documentation

Interval::Interval ( double  start,
double  end,
double  step 
)
inline

Default constructor.

Definition at line 69 of file Types.h.

70  : t0(start), t1(end), stepLength(step)
71  { }
double t0
The start of the interval (inclusive)
Definition: Types.h:76
double stepLength
The world space step length that is reasonable to use for the given interval.
Definition: Types.h:81
double t1
The end of the interval (inclusive)
Definition: Types.h:78

Member Data Documentation

double Interval::t0

The start of the interval (inclusive)

Definition at line 76 of file Types.h.

double Interval::t1

The end of the interval (inclusive)

Definition at line 78 of file Types.h.

double Interval::stepLength

The world space step length that is reasonable to use for the given interval.

Definition at line 81 of file Types.h.


The documentation for this struct was generated from the following file: