Public Types | Public Member Functions | Static Public Member Functions | Protected Attributes

ParametrizedLine< _Scalar, _AmbientDim > Class Template Reference
[Geometry_Module]

A parametrized line. More...

#include <ParametrizedLine.h>

List of all members.

Public Types

enum  { AmbientDimAtCompileTime = _AmbientDim }
enum  { AmbientDimAtCompileTime = _AmbientDim, Options = _Options }
typedef _Scalar Scalar
typedef NumTraits< Scalar >::Real RealScalar
typedef Matrix< Scalar,
AmbientDimAtCompileTime, 1 > 
VectorType
typedef _Scalar Scalar
typedef NumTraits< Scalar >::Real RealScalar
typedef DenseIndex Index
typedef Matrix< Scalar,
AmbientDimAtCompileTime,
1, Options > 
VectorType

Public Member Functions

 ParametrizedLine ()
 ParametrizedLine (int _dim)
 ParametrizedLine (const VectorType &origin, const VectorType &direction)
 ParametrizedLine (const Hyperplane< _Scalar, _AmbientDim > &hyperplane)
 ~ParametrizedLine ()
int dim () const
const VectorTypeorigin () const
VectorTypeorigin ()
const VectorTypedirection () const
VectorTypedirection ()
RealScalar squaredDistance (const VectorType &p) const
RealScalar distance (const VectorType &p) const
VectorType projection (const VectorType &p) const
Scalar intersection (const Hyperplane< _Scalar, _AmbientDim > &hyperplane)
template<typename NewScalarType >
internal::cast_return_type
< ParametrizedLine,
ParametrizedLine
< NewScalarType,
AmbientDimAtCompileTime >
>::type 
cast () const
template<typename OtherScalarType >
 ParametrizedLine (const ParametrizedLine< OtherScalarType, AmbientDimAtCompileTime > &other)
bool isApprox (const ParametrizedLine &other, typename NumTraits< Scalar >::Real prec=precision< Scalar >()) const
 ParametrizedLine ()
template<int OtherOptions>
 ParametrizedLine (const ParametrizedLine< Scalar, AmbientDimAtCompileTime, OtherOptions > &other)
 ParametrizedLine (Index _dim)
 ParametrizedLine (const VectorType &origin, const VectorType &direction)
template<int OtherOptions>
 ParametrizedLine (const Hyperplane< _Scalar, _AmbientDim, OtherOptions > &hyperplane)
 ~ParametrizedLine ()
Index dim () const
const VectorTypeorigin () const
VectorTypeorigin ()
const VectorTypedirection () const
VectorTypedirection ()
RealScalar squaredDistance (const VectorType &p) const
RealScalar distance (const VectorType &p) const
VectorType projection (const VectorType &p) const
template<int OtherOptions>
Scalar intersection (const Hyperplane< _Scalar, _AmbientDim, OtherOptions > &hyperplane)
template<typename NewScalarType >
internal::cast_return_type
< ParametrizedLine,
ParametrizedLine
< NewScalarType,
AmbientDimAtCompileTime,
Options > >::type 
cast () const
template<typename OtherScalarType , int OtherOptions>
 ParametrizedLine (const ParametrizedLine< OtherScalarType, AmbientDimAtCompileTime, OtherOptions > &other)
bool isApprox (const ParametrizedLine &other, typename NumTraits< Scalar >::Real prec=NumTraits< Scalar >::dummy_precision()) const

Static Public Member Functions

static ParametrizedLine Through (const VectorType &p0, const VectorType &p1)
static ParametrizedLine Through (const VectorType &p0, const VectorType &p1)

Protected Attributes

VectorType m_origin
VectorType m_direction

Detailed Description

template<typename _Scalar, int _AmbientDim>
class ParametrizedLine< _Scalar, _AmbientDim >

A parametrized line.

A parametrized line is defined by an origin point $ \mathbf{o} $ and a unit direction vector $ \mathbf{d} $ such that the line corresponds to the set $ l(t) = \mathbf{o} + t \mathbf{d} $, $ l \in \mathbf{R} $.

Parameters:
_Scalar the scalar type, i.e., the type of the coefficients
_AmbientDim the dimension of the ambient space, can be a compile time value or Dynamic.

Member Typedef Documentation

template<typename _Scalar, int _AmbientDim>
typedef DenseIndex ParametrizedLine< _Scalar, _AmbientDim >::Index
template<typename _Scalar, int _AmbientDim>
typedef NumTraits<Scalar>::Real ParametrizedLine< _Scalar, _AmbientDim >::RealScalar
template<typename _Scalar, int _AmbientDim>
typedef NumTraits<Scalar>::Real ParametrizedLine< _Scalar, _AmbientDim >::RealScalar
template<typename _Scalar, int _AmbientDim>
typedef _Scalar ParametrizedLine< _Scalar, _AmbientDim >::Scalar
template<typename _Scalar, int _AmbientDim>
typedef _Scalar ParametrizedLine< _Scalar, _AmbientDim >::Scalar
template<typename _Scalar, int _AmbientDim>
typedef Matrix<Scalar,AmbientDimAtCompileTime,1> ParametrizedLine< _Scalar, _AmbientDim >::VectorType
template<typename _Scalar, int _AmbientDim>
typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> ParametrizedLine< _Scalar, _AmbientDim >::VectorType

Member Enumeration Documentation

template<typename _Scalar, int _AmbientDim>
anonymous enum
Enumerator:
AmbientDimAtCompileTime 
template<typename _Scalar, int _AmbientDim>
anonymous enum
Enumerator:
AmbientDimAtCompileTime 
Options 

Constructor & Destructor Documentation

template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine (  )  [inline, explicit]

Default constructor without initialization

template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( int  _dim  )  [inline, explicit]

Constructs a dynamic-size line with _dim the dimension of the ambient space

template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const VectorType origin,
const VectorType direction 
) [inline]

Initializes a parametrized line of direction direction and origin origin.

Warning:
the vector direction is assumed to be normalized.
template<typename _Scalar , int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const Hyperplane< _Scalar, _AmbientDim > &  hyperplane  )  [inline, explicit]

Constructs a parametrized line from a 2D hyperplane

Warning:
the ambient space must have dimension 2 such that the hyperplane actually describes a line
template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::~ParametrizedLine (  )  [inline]
template<typename _Scalar, int _AmbientDim>
template<typename OtherScalarType >
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const ParametrizedLine< OtherScalarType, AmbientDimAtCompileTime > &  other  )  [inline, explicit]

Copy constructor with scalar type conversion

template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine (  )  [inline, explicit]

Default constructor without initialization

template<typename _Scalar, int _AmbientDim>
template<int OtherOptions>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const ParametrizedLine< Scalar, AmbientDimAtCompileTime, OtherOptions > &  other  )  [inline]
template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( Index  _dim  )  [inline, explicit]

Constructs a dynamic-size line with _dim the dimension of the ambient space

template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const VectorType origin,
const VectorType direction 
) [inline]

Initializes a parametrized line of direction direction and origin origin.

Warning:
the vector direction is assumed to be normalized.
template<typename _Scalar , int _AmbientDim, int _Options>
template<int OtherOptions>
ParametrizedLine< _Scalar, _AmbientDim, _Options >::ParametrizedLine ( const Hyperplane< _Scalar, _AmbientDim, OtherOptions > &  hyperplane  )  [inline, explicit]

Constructs a parametrized line from a 2D hyperplane

Warning:
the ambient space must have dimension 2 such that the hyperplane actually describes a line
template<typename _Scalar, int _AmbientDim>
ParametrizedLine< _Scalar, _AmbientDim >::~ParametrizedLine (  )  [inline]
template<typename _Scalar, int _AmbientDim>
template<typename OtherScalarType , int OtherOptions>
ParametrizedLine< _Scalar, _AmbientDim >::ParametrizedLine ( const ParametrizedLine< OtherScalarType, AmbientDimAtCompileTime, OtherOptions > &  other  )  [inline, explicit]

Copy constructor with scalar type conversion


Member Function Documentation

template<typename _Scalar, int _AmbientDim>
template<typename NewScalarType >
internal::cast_return_type<ParametrizedLine, ParametrizedLine<NewScalarType,AmbientDimAtCompileTime> >::type ParametrizedLine< _Scalar, _AmbientDim >::cast (  )  const [inline]
Returns:
*this with scalar type casted to NewScalarType

Note that if NewScalarType is equal to the current scalar type of *this then this function smartly returns a const reference to *this.

template<typename _Scalar, int _AmbientDim>
template<typename NewScalarType >
internal::cast_return_type<ParametrizedLine, ParametrizedLine<NewScalarType,AmbientDimAtCompileTime,Options> >::type ParametrizedLine< _Scalar, _AmbientDim >::cast (  )  const [inline]
Returns:
*this with scalar type casted to NewScalarType

Note that if NewScalarType is equal to the current scalar type of *this then this function smartly returns a const reference to *this.

template<typename _Scalar, int _AmbientDim>
int ParametrizedLine< _Scalar, _AmbientDim >::dim (  )  const [inline]
Returns:
the dimension in which the line holds
template<typename _Scalar, int _AmbientDim>
Index ParametrizedLine< _Scalar, _AmbientDim >::dim (  )  const [inline]
Returns:
the dimension in which the line holds
template<typename _Scalar, int _AmbientDim>
const VectorType& ParametrizedLine< _Scalar, _AmbientDim >::direction (  )  const [inline]
template<typename _Scalar, int _AmbientDim>
VectorType& ParametrizedLine< _Scalar, _AmbientDim >::direction (  )  [inline]
template<typename _Scalar, int _AmbientDim>
const VectorType& ParametrizedLine< _Scalar, _AmbientDim >::direction (  )  const [inline]
template<typename _Scalar, int _AmbientDim>
VectorType& ParametrizedLine< _Scalar, _AmbientDim >::direction (  )  [inline]
template<typename _Scalar, int _AmbientDim>
RealScalar ParametrizedLine< _Scalar, _AmbientDim >::distance ( const VectorType p  )  const [inline]
Returns:
the distance of a point p to its projection onto the line *this.
See also:
squaredDistance()
template<typename _Scalar, int _AmbientDim>
RealScalar ParametrizedLine< _Scalar, _AmbientDim >::distance ( const VectorType p  )  const [inline]
Returns:
the distance of a point p to its projection onto the line *this.
See also:
squaredDistance()
template<typename _Scalar , int _AmbientDim>
_Scalar ParametrizedLine< _Scalar, _AmbientDim >::intersection ( const Hyperplane< _Scalar, _AmbientDim > &  hyperplane  )  [inline]
Returns:
the parameter value of the intersection between *this and the given hyperplane
template<typename _Scalar , int _AmbientDim, int _Options>
template<int OtherOptions>
_Scalar ParametrizedLine< _Scalar, _AmbientDim, _Options >::intersection ( const Hyperplane< _Scalar, _AmbientDim, OtherOptions > &  hyperplane  )  [inline]
Returns:
the parameter value of the intersection between *this and the given hyperplane
template<typename _Scalar, int _AmbientDim>
bool ParametrizedLine< _Scalar, _AmbientDim >::isApprox ( const ParametrizedLine< _Scalar, _AmbientDim > &  other,
typename NumTraits< Scalar >::Real  prec = precision<Scalar>() 
) const [inline]
Returns:
true if *this is approximately equal to other, within the precision determined by prec.
See also:
MatrixBase::isApprox()
template<typename _Scalar, int _AmbientDim>
bool ParametrizedLine< _Scalar, _AmbientDim >::isApprox ( const ParametrizedLine< _Scalar, _AmbientDim > &  other,
typename NumTraits< Scalar >::Real  prec = NumTraits<Scalar>::dummy_precision() 
) const [inline]
Returns:
true if *this is approximately equal to other, within the precision determined by prec.
See also:
MatrixBase::isApprox()
template<typename _Scalar, int _AmbientDim>
VectorType& ParametrizedLine< _Scalar, _AmbientDim >::origin (  )  [inline]
template<typename _Scalar, int _AmbientDim>
const VectorType& ParametrizedLine< _Scalar, _AmbientDim >::origin (  )  const [inline]
template<typename _Scalar, int _AmbientDim>
VectorType& ParametrizedLine< _Scalar, _AmbientDim >::origin (  )  [inline]
template<typename _Scalar, int _AmbientDim>
const VectorType& ParametrizedLine< _Scalar, _AmbientDim >::origin (  )  const [inline]
template<typename _Scalar, int _AmbientDim>
VectorType ParametrizedLine< _Scalar, _AmbientDim >::projection ( const VectorType p  )  const [inline]
Returns:
the projection of a point p onto the line *this.
template<typename _Scalar, int _AmbientDim>
VectorType ParametrizedLine< _Scalar, _AmbientDim >::projection ( const VectorType p  )  const [inline]
Returns:
the projection of a point p onto the line *this.
template<typename _Scalar, int _AmbientDim>
RealScalar ParametrizedLine< _Scalar, _AmbientDim >::squaredDistance ( const VectorType p  )  const [inline]
Returns:
the squared distance of a point p to its projection onto the line *this.
See also:
distance()
template<typename _Scalar, int _AmbientDim>
RealScalar ParametrizedLine< _Scalar, _AmbientDim >::squaredDistance ( const VectorType p  )  const [inline]
Returns:
the squared distance of a point p to its projection onto the line *this.
See also:
distance()
template<typename _Scalar, int _AmbientDim>
static ParametrizedLine ParametrizedLine< _Scalar, _AmbientDim >::Through ( const VectorType p0,
const VectorType p1 
) [inline, static]

Constructs a parametrized line going from p0 to p1.

template<typename _Scalar, int _AmbientDim>
static ParametrizedLine ParametrizedLine< _Scalar, _AmbientDim >::Through ( const VectorType p0,
const VectorType p1 
) [inline, static]

Constructs a parametrized line going from p0 to p1.


Member Data Documentation

template<typename _Scalar, int _AmbientDim>
VectorType ParametrizedLine< _Scalar, _AmbientDim >::m_direction [protected]
template<typename _Scalar, int _AmbientDim>
VectorType ParametrizedLine< _Scalar, _AmbientDim >::m_origin [protected]

The documentation for this class was generated from the following files: