BALL::SESVertex Class Reference
[Molecular Surface Computation]

#include <BALL/STRUCTURE/SESVertex.h>

Inheritance diagram for BALL::SESVertex:
BALL::GraphVertex< SESVertex, SESEdge, SESFace >

List of all members.


Public Member Functions

Constructors and Destructors
 SESVertex ()
 SESVertex (const SESVertex &sesvertex, bool deep=false)
 SESVertex (const TVector3< double > &point, const TVector3< double > &normal, Index atom, Index index)
virtual ~SESVertex ()
Assignment
void set (const SESVertex &sesvertex, bool deep=false)
SESVertexoperator= (const SESVertex &sesvertex)
void set (const TVector3< double > point, const TVector3< double > &normal, Index atom, Index index)
void setPoint (const TVector3< double > &point)
TVector3< doublegetPoint () const
void setNormal (const TVector3< double > &normal) throw (Exception::DivisionByZero)
TVector3< doublegetNormal () const
void setAtom (Index atom)
Index getAtom () const
Predicates
virtual bool operator== (const SESVertex &) const
virtual bool operator!= (const SESVertex &) const
virtual bool operator*= (const SESVertex &) const

Protected Attributes

Attributes
TVector3< doublepoint_
TVector3< doublenormal_
Index atom_

Friends

Class friends


class SESEdge
class SESFace
class SolventExcludedSurface
class SESComputer
class SESSingularityCleaner
class TriangulatedSES
class SESTriangulator

Detailed Description

Generic SESVertex Class.


Constructor & Destructor Documentation

BALL::SESVertex::SESVertex (  ) 

Default constructor. This method creates a new SESVertex object.

BALL::SESVertex::SESVertex ( const SESVertex sesvertex,
bool  deep = false 
)

Copy constructor. Create a new SESVertex object from another.

Parameters:
sesvertex the SESVertex object to be copied
deep if deep = false, all pointers are set to NULL (default). Otherwise the new SESVertex object is linked to the neighbours of the old SESVertex object.
BALL::SESVertex::SESVertex ( const TVector3< double > &  point,
const TVector3< double > &  normal,
Index  atom,
Index  index 
)

Detailled constructor. Create a new SESVertex object from some nice objects.

Parameters:
point assigned to the point representet by the vertex
normal assigned to the normal vector of the vertex
atom assigned to the index of the closest atom
index assigned to the index of the vertex
virtual BALL::SESVertex::~SESVertex (  )  [virtual]

Destructor. Destructs the RSVertex object.


Member Function Documentation

Index BALL::SESVertex::getAtom (  )  const

Return the index of the closest atom.

Returns:
Index the index of the closest atom
TVector3<double> BALL::SESVertex::getNormal (  )  const

Return the normal vector of the SESVertex.

Returns:
TVector3<double> the normal vector of the vertex
TVector3<double> BALL::SESVertex::getPoint (  )  const

Return the point represented by the SESVertex.

Returns:
TVector3<double> the point represented by the vertex
virtual bool BALL::SESVertex::operator!= ( const SESVertex  )  const [virtual]

Inequality operator.

Returns:
bool false

Reimplemented from BALL::GraphVertex< SESVertex, SESEdge, SESFace >.

virtual bool BALL::SESVertex::operator*= ( const SESVertex  )  const [virtual]

Similarity operator.

Returns:
bool true

Reimplemented from BALL::GraphVertex< SESVertex, SESEdge, SESFace >.

SESVertex& BALL::SESVertex::operator= ( const SESVertex sesvertex  ) 

Assign from another SESVertex. The new SESVertex object is linked to the neighbours of the SESVertex object to assign from.

Parameters:
sesvertex the SESVertex object to assign from
virtual bool BALL::SESVertex::operator== ( const SESVertex  )  const [virtual]

Equality operator.

Returns:
bool true

Reimplemented from BALL::GraphVertex< SESVertex, SESEdge, SESFace >.

void BALL::SESVertex::set ( const TVector3< double point,
const TVector3< double > &  normal,
Index  atom,
Index  index 
)

Assign to two TVector3<double>'s and two indices.

Parameters:
point assigned to the point represented by the vertex
normal assigned to the normal vector of th vertex
atom assigned to the index of the closest atom
index assigned to the index of the vertex
void BALL::SESVertex::set ( const SESVertex sesvertex,
bool  deep = false 
)

Assign from another SESVertex.

Parameters:
sesvertex the SESVertex object to assign from
deep if deep = false, all pointers are set to NULL (default). Otherwise the new SESVertex object is linked to the neighbours of the SESVertex object to assign from.
void BALL::SESVertex::setAtom ( Index  atom  ) 

Set the index of the closest atom of the SESVertex.

Parameters:
atom the index of the closest atom
void BALL::SESVertex::setNormal ( const TVector3< double > &  normal  )  throw (Exception::DivisionByZero)

Set the normal vector of the SESVertex.

Parameters:
normal the new normal vector
void BALL::SESVertex::setPoint ( const TVector3< double > &  point  ) 

Set the point represented by the SESVertex.

Parameters:
point the new point

Friends And Related Function Documentation

friend class SESComputer [friend]
friend class SESEdge [friend]
friend class SESFace [friend]
friend class SESSingularityCleaner [friend]
friend class SESTriangulator [friend]
friend class SolventExcludedSurface [friend]
friend class TriangulatedSES [friend]

Member Data Documentation