library: libRGL
#include "TGLUtil.h"

TGLPlane


class description - header file - source file
viewCVS header - viewCVS source

class TGLPlane

Inheritance Inherited Members Includes Libraries
Class Charts

Function Members (Methods)

Display options:
Show inherited
Show non-public
public:
TGLPlane()
TGLPlane(const TGLPlane& other)
TGLPlane(Double_t* eq)
TGLPlane(const TGLVector3& norm, const TGLVertex3& point)
TGLPlane(const TGLVertex3& p1, const TGLVertex3& p2, const TGLVertex3& p3)
TGLPlane(Double_t a, Double_t b, Double_t c, Double_t d)
virtual~TGLPlane()
Double_tA() const
Double_t*Arr()
Double_tB() const
Double_tC() const
const Double_t*CArr() const
static TClass*Class()
Double_tD() const
Double_tDistanceTo(const TGLVertex3& vertex) const
voidDump() const
virtual TClass*IsA() const
TGLVertex3NearestOn(const TGLVertex3& point) const
voidNegate()
TGLVector3Norm() const
TGLPlane&operator=(const TGLPlane&)
voidSet(const TGLPlane& other)
voidSet(Double_t* eq)
voidSet(const TGLVector3& norm, const TGLVertex3& point)
voidSet(const TGLVertex3& p1, const TGLVertex3& p2, const TGLVertex3& p3)
voidSet(Double_t a, Double_t b, Double_t c, Double_t d)
virtual voidShowMembers(TMemberInspector& insp, char* parent)
virtual voidStreamer(TBuffer& b)
voidStreamerNVirtual(TBuffer& b)
private:
voidNormalise()

Data Members

private:
Double_tfVals[4]

Class Description

                                                                      
 TGLVertex3                                                           
                                                                      
 3 component (x/y/z) vertex class                                     
                                                                      
 This is part of collection of simple utility classes for GL only in  
 TGLUtil.h/cxx. These provide const and non-const accessors Arr() &   
 CArr() to a GL compatible internal field - so can be used directly   
 with OpenGL C API calls - which TVector3 etc cannot (easily).        
 They are not intended to be fully featured just provide minimum      
 required.                                                            

TGLPlane()
 Construct a default plane of x + y + z = 0
TGLPlane(const TGLPlane & other)
 Construct plane from 'other'
TGLPlane(Double_t a, Double_t b, Double_t c, Double_t d)
 Construct plane with equation a.x + b.y + c.z + d = 0
 with optional normalisation
TGLPlane(Double_t eq[4])
 Construct plane with equation eq[0].x + eq[1].y + eq[2].z + eq[3] = 0
 with optional normalisation
TGLPlane(const TGLVertex3 & p1, const TGLVertex3 & p2, const TGLVertex3 & p3)
 Construct plane passing through 3 supplied points
 with optional normalisation
TGLPlane(const TGLVector3 & v, const TGLVertex3 & p)
 Construct plane with supplied normal vector, passing through point
 with optional normalisation
~TGLPlane()
 Destroy plane object
void Dump()
 Output plane equation to std::out
void Set(const TGLPlane & other)
______________________________________________________________________________
void Set(Double_t a, Double_t b, Double_t c, Double_t d)
______________________________________________________________________________
void Set(Double_t eq[4])
______________________________________________________________________________
void Set(const TGLVector3 & norm, const TGLVertex3 & point)
______________________________________________________________________________
 Set plane from a normal vector and in-plane point pair
void Set(const TGLVertex3 & p1, const TGLVertex3 & p2, const TGLVertex3 & p3)
______________________________________________________________________________
void Negate()
______________________________________________________________________________
void Normalise()
______________________________________________________________________________
Double_t DistanceTo(const TGLVertex3 & vertex)
______________________________________________________________________________
TGLVertex3 NearestOn(const TGLVertex3 & point)
______________________________________________________________________________
const Double_t * CArr()
{ return fVals; }
Double_t * Arr()
{ return fVals; }
Double_t A()
 Accessors
{ return fVals[0]; }
Double_t B()
{ return fVals[1]; }
Double_t C()
{ return fVals[2]; }
Double_t D()
{ return fVals[3]; }
TGLVector3 Norm()
{ return TGLVector3( fVals[0], fVals[1], fVals[2]); }
TGLUtil& operator=(const TGLUtil& glu)

Author: Richard Maunder 25/05/2005
Last update: root/gl:$Name: $:$Id: TGLUtil.cxx,v 1.33 2006/12/13 09:33:29 brun Exp $
Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *


ROOT page - Class index - Class Hierarchy - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.